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 # Parallel testsuite harness: check APIs for the registering of test
18 # results in '*.trs' files, as documented in the automake manual.
22 cat >> configure.ac << 'END'
26 cat > Makefile.am << 'END'
27 TEST_LOG_DRIVER = ./dummy-driver
28 TESTS = foo.test bar.test
31 cat > dummy-driver <<'END'
34 while test $# -gt 0; do
36 --log-file) log_file=$2; shift;;
37 --trs-file) trs_file=$2; shift;;
38 --test-name) test_name=$2; shift;;
39 --expect-failure|--color-tests|--enable-hard-errors) shift;;
41 *) echo "$0: invalid option/argument: '$1'" >&2; exit 2;;
48 chmod a+x dummy-driver
53 $MAKE check >stdout || st=$?
55 # Our dummy driver make no testsuite progress report.
56 grep ': .*\.test' stdout && exit 1
57 # Nor it writes to the log files.
58 test -s foo.log && exit 1
59 test -s bar.log && exit 1
63 # This must be different from the one defined in 'test/defs', as that
64 # assumes that the driver does proper testsuite progress reporting.
67 total=ERR pass=ERR fail=ERR xpass=ERR xfail=ERR skip=ERR error=ERR
70 grep "^# TOTAL: *$total$" stdout || rc=1
71 grep "^# PASS: *$pass$" stdout || rc=1
72 grep "^# XFAIL: *$xfail$" stdout || rc=1
73 grep "^# SKIP: *$skip$" stdout || rc=1
74 grep "^# FAIL: *$fail$" stdout || rc=1
75 grep "^# XPASS: *$xpass$" stdout || rc=1
76 grep "^# ERROR: *$error$" stdout || rc=1
77 test $st -eq 0 || exit 1
86 # Basic checks. Also that that ':global-test-result:' fields and
87 # "old-style" directives with format "RESULT: test-name" are now ignored.
90 echo blah blah blah > bar.test
92 count_test_results total=0 pass=0 fail=0 xpass=0 xfail=0 skip=0 error=0
95 :test-global-result: PASS
100 :test-global-result: ERROR
103 count_test_results total=2 pass=0 fail=1 xpass=0 xfail=0 skip=1 error=0
108 :test-global-result: XPASS
110 echo ERROR: bar.test > bar.test
112 count_test_results total=1 pass=1 fail=0 xpass=0 xfail=0 skip=0 error=0
115 :test-global-result: SKIP
119 :test-global-result: PASS
122 count_test_results total=1 pass=0 fail=1 xpass=0 xfail=0 skip=0 error=0
137 count_test_results total=8 pass=4 fail=0 xpass=0 xfail=1 skip=3 error=0
139 # Check that all results expected to be supported are *really* supported.
151 count_test_results total=6 pass=1 fail=1 xpass=1 xfail=1 skip=1 error=1
155 count_test_results total=12 pass=2 fail=2 xpass=2 xfail=2 skip=2 error=2
157 # Check that we are liberal w.r.t. whitespace use.
161 for RESULT in PASS FAIL XPASS XFAIL SKIP ERROR; do
162 sed -e 's/^ *//' -e 's/|//g' >> foo.test <<END
163 |:test-result:$RESULT|
164 |:test-result: $tab $RESULT|
165 |:test-result:$RESULT $tab|
166 |:test-result:$tab$tab $RESULT$tab $tab |
168 echo " $tab $tab$tab :test-result: $RESULT" >> bar.test
170 cat foo.test # For debugging.
171 cat bar.test # Likewise.
173 count_test_results total=30 pass=5 fail=5 xpass=5 xfail=5 skip=5 error=5