doc: update Vala documentation
[automake.git] / t / parallel-tests-unreadable.sh
blob852526fc3567b1d70ab2dd5ce36c2b34dad7663b
1 #! /bin/sh
2 # Copyright (C) 2011-2024 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)
7 # any later version.
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 <https://www.gnu.org/licenses/>.
17 # Check that the testsuite driver copes well with unreadable '.log'
18 # and '.trs' files.
20 . test-init.sh
22 : > t
23 chmod a-r t && test ! -r t || skip_ "you can still read unreadable files"
24 rm -f t
26 cat >> configure.ac << 'END'
27 AC_OUTPUT
28 END
30 cat > Makefile.am << 'END'
31 TESTS = foo.test bar.test
32 END
34 cat > foo.test << 'END'
35 #! /bin/sh
36 echo foofoofoo
37 exit 0
38 END
40 cat > bar.test << 'END'
41 #! /bin/sh
42 echo barbarbar
43 exit 77
44 END
46 chmod a+x foo.test bar.test
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE -a
52 ./configure
54 for files in \
55 'foo.log bar.log' \
56 'foo.trs bar.trs' \
57 'foo.trs bar.log' \
58 'foo.log bar.trs' \
59 ; do
60 $MAKE check
61 rm -f test-suite.log
62 chmod a-r $files
63 $MAKE test-suite.log || { ls -l; exit 1; }
64 ls -l
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'.
73 done