]> CyberLeo.Net >> Repos - FreeBSD/releng/9.3.git/blob - contrib/ntp/sntp/m4/ntp_problemtests.m4
o Fix invalid TCP checksums with pf(4). [EN-16:02.pf]
[FreeBSD/releng/9.3.git] / contrib / ntp / sntp / m4 / ntp_problemtests.m4
1 dnl ######################################################################
2 dnl NTP_PROBLEM_TESTS
3 dnl
4 dnl Some platforms have problems building or running certain tests.
5 dnl While we're in the initial phase of the deployment of the test
6 dnl framework, sometimes we may need to disable these tests.
7 dnl
8 dnl This is where we do that.
9 dnl
10 AC_DEFUN([NTP_PROBLEM_TESTS], [
11 case "$build" in
12  $host) cross=0 ;;
13  *)     cross=1 ;;
14 esac
15
16 AC_MSG_CHECKING([if we want to enable tests with undiagnosed problems])
17 AC_ARG_ENABLE(
18     [problem-tests],
19     [AS_HELP_STRING(
20         [--enable-problem-tests],
21         [+ enable tests with undiagnosed problems]
22     )],
23     [ntp_ept=$enableval],
24     [ntp_ept=yes]
25 )
26 AC_MSG_RESULT([$ntp_ept])
27
28 AC_MSG_CHECKING([if we can run test-ntp_restrict])
29 ntp_test_ntp_restrict="no"
30 case "$ntp_ept:$cross:$host" in
31  no:0:*-*-freebsd6.4) ;;
32  no:0:*-*-hpux11.23*) ;;
33  no:0:*-*-solaris*) ;;
34  *) ntp_test_ntp_restrict="yes" ;;
35 esac
36 AC_MSG_RESULT([$ntp_test_ntp_restrict])
37 AM_CONDITIONAL([BUILD_TEST_NTP_RESTRICT], [test x$ntp_test_ntp_restrict = xyes])
38
39 AC_MSG_CHECKING([if we can run test-ntp_scanner])
40 ntp_test_ntp_scanner="no"
41 case "$ntp_ept:$cross:$host" in
42  no:0:*-*-freebsd6.4) ;;
43  no:0:*-*-solaris*) ;;
44  *) ntp_test_ntp_scanner="yes" ;;
45 esac
46 AC_MSG_RESULT([$ntp_test_ntp_scanner])
47 AM_CONDITIONAL([BUILD_TEST_NTP_SCANNER], [test x$ntp_test_ntp_scanner = xyes])
48
49 AC_MSG_CHECKING([if we can run test-ntp_signd])
50 ntp_test_ntp_signd="no"
51 case "$ntp_ept:$cross:$host" in
52  no:0:*-*-freebsd6.4) ;;
53  no:0:*-*-solaris*) ;;
54  *) ntp_test_ntp_signd="yes" ;;
55 esac
56 AC_MSG_RESULT([$ntp_test_ntp_signd])
57 AM_CONDITIONAL([BUILD_TEST_NTP_SIGND], [test x$ntp_test_ntp_signd = xyes])
58 ])
59 dnl ======================================================================