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 # Check parallel harness features:
18 # - recovery from unreadable '.trs' files, in various scenarios
22 cat >> configure.ac <<END
26 cat > Makefile.am << 'END'
27 TESTS = foo.test bar.test
28 TEST_LOG_COMPILER = true
34 TEST_STATUS=0; export TEST_STATUS
43 chmod a-r t && test ! -r t || skip_ "you can still read unreadable files"
46 : Create the required log files.
51 : Recreate with a sweeping "make check".
59 : Again, this time with one .trs file missing and the other
69 : Again, but using "make recheck" this time.
72 $MAKE recheck >stdout || { cat stdout; exit 1; }
78 grep '^PASS: foo\.test' stdout
79 grep '^PASS: bar\.test' stdout
81 : Recreate by remaking the global test log.
84 $MAKE test-suite.log >stdout || { cat stdout; exit 1; }
88 grep '^PASS: foo\.test' stdout
89 grep 'bar\.test' stdout && exit 1
90 # Also test that have only run before should be counted in the final
92 grep '^# TOTAL: *2$' stdout
94 : Setup for the next check.
96 sed 's/^TESTS =.*/& baz.test/' Makefile > t
97 diff t Makefile && exit 99
104 : Interactions with lazy test reruns are OK.
110 RECHECK_LOGS= $MAKE -e check >stdout || { cat stdout; exit 1; }
113 is_newest bar.trs bar.test
114 grep '^PASS: foo\.test' stdout
115 grep '^PASS: bar\.test' stdout
116 grep 'baz\.test' stdout && exit 1
117 # Also test that have only run before should be counted in the final
119 grep '^# TOTAL: *3$' stdout