xref: /freebsd/contrib/ntp/sntp/m4/ntp_problemtests.m4 (revision 0bc2abddc8d4abb89a210f2bb113e9e7c2d4ce18)
1dnl ######################################################################
2dnl NTP_PROBLEM_TESTS
3dnl
4dnl Some platforms have problems building or running certain tests.
5dnl While we're in the initial phase of the deployment of the test
6dnl framework, sometimes we may need to disable these tests.
7dnl
8dnl This is where we do that.
9dnl
10AC_DEFUN([NTP_PROBLEM_TESTS], [
11case "$build" in
12 $host)	cross=0 ;;
13 *)	cross=1 ;;
14esac
15
16AC_MSG_CHECKING([if we want to enable tests with undiagnosed problems])
17AC_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)
26AC_MSG_RESULT([$ntp_ept])
27
28AC_MSG_CHECKING([if we can run test-ntp_restrict])
29ntp_test_ntp_restrict="no"
30case "$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" ;;
35esac
36AC_MSG_RESULT([$ntp_test_ntp_restrict])
37AM_CONDITIONAL([BUILD_TEST_NTP_RESTRICT], [test x$ntp_test_ntp_restrict = xyes])
38
39AC_MSG_CHECKING([if we can run test-ntp_scanner])
40ntp_test_ntp_scanner="no"
41case "$ntp_ept:$cross:$host" in
42 no:0:*-*-freebsd6.4) ;;
43 no:0:*-*-solaris*) ;;
44 *) ntp_test_ntp_scanner="yes" ;;
45esac
46AC_MSG_RESULT([$ntp_test_ntp_scanner])
47AM_CONDITIONAL([BUILD_TEST_NTP_SCANNER], [test x$ntp_test_ntp_scanner = xyes])
48
49AC_MSG_CHECKING([if we can run test-ntp_signd])
50ntp_test_ntp_signd="no"
51case "$ntp_ept:$cross:$host" in
52 no:0:*-*-freebsd6.4) ;;
53 no:0:*-*-solaris*) ;;
54 *) ntp_test_ntp_signd="yes" ;;
55esac
56AC_MSG_RESULT([$ntp_test_ntp_signd])
57AM_CONDITIONAL([BUILD_TEST_NTP_SIGND], [test x$ntp_test_ntp_signd = xyes])
58])
59dnl ======================================================================
60