2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 # Custom test drivers: try the "recheck" functionality with test protocols
18 # that allow multiple testcases in a single test script. In particular,
19 # check that this still works when we override $(TESTS) and $(TEST_LOGS)
21 # See also related tests 'test-driver-custom-multitest-recheck.test' and
22 # 'parallel-tests-recheck-override.test'.
26 cp "$am_testauxdir"/trivial-test-driver . \
27 || fatal_ "failed to fetch auxiliary script trivial-test-driver"
29 cat >> configure.ac << 'END'
33 cat > Makefile.am << 'END'
34 TEST_LOG_DRIVER = $(SHELL) $(srcdir)/trivial-test-driver
35 TESTS = a.test b.test c.test
58 if test -f c.err; then
60 elif test -f c.ok; then
74 for vpath in : false; do
85 : Run the tests for the first time.
86 $MAKE check >stdout && { cat stdout; exit 1; }
88 # All the test scripts should have run.
92 count_test_results total=5 pass=2 fail=1 xpass=1 xfail=0 skip=1 error=0
96 : An empty '$(TESTS)' or '$(TEST_LOGS)' means that no test should be run.
97 for var in TESTS TEST_LOGS; do
98 env "$var=" $MAKE -e recheck >stdout || { cat stdout; exit 1; }
100 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
107 : a.test was successful the first time, no need to re-run it.
108 env TESTS=a.test $MAKE -e recheck >stdout \
109 || { cat stdout; exit 1; }
111 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
116 : b.test failed, it should be re-run. And make it pass this time.
118 TEST_LOGS=b.log $MAKE -e recheck >stdout \
119 || { cat stdout; exit 1; }
124 count_test_results total=2 pass=0 fail=0 xpass=0 xfail=1 skip=1 error=0
128 : No need to re-run a.test or b.test anymore.
129 TEST_LOGS=b.log $MAKE -e recheck >stdout \
130 || { cat stdout; exit 1; }
132 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
136 TESTS='a.test b.test' $MAKE -e recheck >stdout \
137 || { cat stdout; exit 1; }
139 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
144 : No need to re-run a.test anymore, but c.test should be rerun,
145 : as it contained an XPASS. And this time, make it fail with
148 env TEST_LOGS='a.log c.log' $MAKE -e recheck >stdout \
149 && { cat stdout; exit 1; }
151 count_test_results total=1 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=1
158 : c.test contained and hard error the last time, so it should be re-run.
159 : This time, make it pass
160 # Use 'echo', not ':'; see comments above for why.
162 env TESTS='c.test a.test' $MAKE -e recheck >stdout \
163 || { cat stdout; exit 1; }
165 count_test_results total=1 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=0
170 rm -f *.run *.err *.ok
172 : Nothing should be rerun anymore, as all tests have been eventually
174 $MAKE recheck >stdout || { cat stdout; exit 1; }
176 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0