am-ft: make the environment available earlier
[platform/upstream/automake.git] / t / parallel-tests-unreadable.sh
1 #! /bin/sh
2 # Copyright (C) 2011-2013 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 . test-init.sh
21
22 : > t
23 chmod a-r t && test ! -r t || skip_ "you can still read unreadable files"
24 rm -f t
25
26 cat >> configure.ac << 'END'
27 AC_OUTPUT
28 END
29
30 cat > Makefile.am << 'END'
31 TESTS = foo.test bar.test
32 END
33
34 cat > foo.test << 'END'
35 #! /bin/sh
36 echo foofoofoo
37 exit 0
38 END
39
40 cat > bar.test << 'END'
41 #! /bin/sh
42 echo barbarbar
43 exit 77
44 END
45
46 chmod a+x foo.test bar.test
47
48 $ACLOCAL
49 $AUTOCONF
50 $AUTOMAKE -a
51
52 ./configure
53
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
74
75 :