]> git.draconx.ca Git - cdecl99.git/blob - testsuite.at
Fix build with new Bison versions.
[cdecl99.git] / testsuite.at
1 AT_COPYRIGHT([Copyright © 2020 Nick Bowler])
2 #
3 # This program is free software: you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published by
5 # the Free Software Foundation, either version 3 of the License, or
6 # (at your option) any later version.
7 #
8 # This program is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
15
16 AT_INIT
17 AT_COLOR_TESTS
18
19 AT_TESTED([cdecl99])
20
21 AT_ARG_OPTION_ARG([random-seed],
22   [AS_HELP_STRING([--random-seed=ARG],
23     [Integer seed for randomized testing (default: auto)])],
24   [random_seed=$at_optarg], [random_seed=$RANDOM$$])
25
26 AT_ARG_OPTION_ARG([random-iterations],
27   [AS_HELP_STRING([--random-iterations=N],
28     [Number of randomized testcases to perform (default: 500)])],
29   [random_iter=$at_optarg], [random_iter=])
30
31 m4_divert_push([PREPARE_TESTS])dnl
32 : ${LIBTOOL="$SHELL $builddir/libtool"}
33 random_seed=`printf '%s' "$random_seed" | tr -cd '@<:@:digit:@:>@'`
34 random_seed=${random_seed:-0}
35 random_iter=`printf '%s' "$random_iter" | tr -cd '@<:@:digit:@:>@'`
36 random_iter=`expr "$random_iter" '|' 500`
37 m4_divert_pop([PREPARE_TESTS])
38
39 m4_define([TEST_NEED_PROGRAM], [AT_KEYWORDS([$1])dnl
40 AT_CHECK([for arg in $check_PROGRAMS; do
41 test x"${arg##*/}" != x"$1$EXEEXT" || exit 0
42 done
43 exit 77])])
44
45 m4_include([tests/general.at])
46 m4_include([tests/decl-good.at])
47 m4_include([tests/decl-bad.at])
48 m4_include([tests/stress.at])