ntp_problemtests.m4 revision 290001
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:*-*-solaris*) ;;
32 no:0:*-*-hpux-11.23*) ;;
33 *) ntp_test_ntp_restrict="yes" ;;
34esac
35AC_MSG_RESULT([$ntp_test_ntp_restrict])
36AM_CONDITIONAL([BUILD_TEST_NTP_RESTRICT], [test x$ntp_test_ntp_restrict = xyes])
37
38AC_MSG_CHECKING([if we can run test-ntp_scanner])
39ntp_test_ntp_scanner="no"
40case "$ntp_ept:$cross:$host" in
41 no:0:*-*-solaris*) ;;
42 *) ntp_test_ntp_scanner="yes" ;;
43esac
44AC_MSG_RESULT([$ntp_test_ntp_scanner])
45AM_CONDITIONAL([BUILD_TEST_NTP_SCANNER], [test x$ntp_test_ntp_scanner = xyes])
46
47AC_MSG_CHECKING([if we can run test-ntp_signd])
48ntp_test_ntp_signd="no"
49case "$ntp_ept:$cross:$host" in
50 no:0:*-*-solaris*) ;;
51 *) ntp_test_ntp_signd="yes" ;;
52esac
53AC_MSG_RESULT([$ntp_test_ntp_signd])
54AM_CONDITIONAL([BUILD_TEST_NTP_SIGND], [test x$ntp_test_ntp_signd = xyes])
55])
56dnl ======================================================================
57