Merge branch 'maint'
[platform/upstream/automake.git] / t / parallel-tests-unreadable.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2012 Free Software Foundation, Inc.
3 #
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.
8 #
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.
13 #
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/>.
16
17 # Check that the testsuite driver copes well with unreadable '.log'
18 # and '.trs' files.
19
20 am_parallel_tests=yes
21 . ./defs || Exit 1
22
23 : > t
24 chmod a-r t && test ! -r t || skip_ "you can still read unreadable files"
25 rm -f t
26
27 cat >> configure.ac << 'END'
28 AC_OUTPUT
29 END
30
31 cat > Makefile.am << 'END'
32 TESTS = foo.test bar.test
33 END
34
35 cat > foo.test << 'END'
36 #! /bin/sh
37 echo foofoofoo
38 exit 0
39 END
40
41 cat > bar.test << 'END'
42 #! /bin/sh
43 echo barbarbar
44 exit 77
45 END
46
47 chmod a+x foo.test bar.test
48
49 $ACLOCAL
50 $AUTOCONF
51 $AUTOMAKE -a
52
53 ./configure
54
55 for files in \
56   'foo.log bar.log' \
57   'foo.trs bar.trs' \
58   'foo.trs bar.log' \
59   'foo.log bar.trs' \
60 ; do
61   $MAKE check
62   rm -f test-suite.log
63   chmod a-r $files
64   $MAKE test-suite.log || { ls -l; Exit 1; }
65   ls -l
66   grep '^foofoofoo$' foo.log
67   grep '^:test-result: PASS' foo.trs
68   grep '^barbarbar$' bar.log
69   grep '^:test-result: SKIP' bar.trs
70   grep '^SKIP: bar' test-suite.log
71   grep '^barbarbar$' test-suite.log
72   $EGREP ':.*foo|foofoofoo' test-suite.log && Exit 1
73   : For shells with busted 'set -e'.
74 done
75
76 :