]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/ntp/sntp/m4/ntp_problemtests.m4
Fix multiple denial of service in ntpd.
[FreeBSD/FreeBSD.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 case "$ntp_cv_gc_sections_runs" in
37   no) ntp_test_ntp_restrict="no" ;;
38   * ) ;;
39 esac
40 AC_MSG_RESULT([$ntp_test_ntp_restrict])
41 AM_CONDITIONAL([BUILD_TEST_NTP_RESTRICT], [test x$ntp_test_ntp_restrict = xyes])
42
43 AC_MSG_CHECKING([if we can run test-ntp_scanner])
44 ntp_test_ntp_scanner="no"
45 case "$ntp_ept:$cross:$host" in
46  no:0:*-*-freebsd6.4) ;;
47  no:0:*-*-solaris*) ;;
48  *) ntp_test_ntp_scanner="yes" ;;
49 esac
50 case "$ntp_cv_gc_sections_runs" in
51   no) ntp_test_ntp_scanner="no" ;;
52   * ) ;;
53 esac
54 AC_MSG_RESULT([$ntp_test_ntp_scanner])
55 AM_CONDITIONAL([BUILD_TEST_NTP_SCANNER], [test x$ntp_test_ntp_scanner = xyes])
56
57 AC_MSG_CHECKING([if we can run test-ntp_signd])
58 ntp_test_ntp_signd="no"
59 case "$ntp_ept:$cross:$host" in
60  no:0:*-*-freebsd6.4) ;;
61  no:0:*-*-solaris*) ;;
62  *) ntp_test_ntp_signd="yes" ;;
63 esac
64 case "$ntp_cv_gc_sections_runs" in
65   no) ntp_test_ntp_signd="no" ;;
66   * ) ;;
67 esac
68 AC_MSG_RESULT([$ntp_test_ntp_signd])
69 AM_CONDITIONAL([BUILD_TEST_NTP_SIGND], [test x$ntp_test_ntp_signd = xyes])
70
71 ])
72 dnl ======================================================================