2 # Copyright (C) 2011-2013 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 that the testsuite driver copes well with unreadable '.log'
23 chmod a-r t && test ! -r t || skip_ "you can still read unreadable files"
26 cat >> configure.ac << 'END'
30 cat > Makefile.am << 'END'
31 TESTS = foo.test bar.test
34 cat > foo.test << 'END'
40 cat > bar.test << 'END'
46 chmod a+x foo.test bar.test
63 $MAKE test-suite.log || { ls -l; exit 1; }
65 grep '^foofoofoo$' foo.log
66 grep '^:test-result: PASS' foo.trs
67 grep '^barbarbar$' bar.log
68 grep '^:test-result: SKIP' bar.trs
69 grep '^SKIP: bar' test-suite.log
70 grep '^barbarbar$' test-suite.log
71 $EGREP ':.*foo|foofoofoo' test-suite.log && exit 1
72 : For shells with busted 'set -e'.