tests: rename 'tests/' => 't/', '*.test' => '*.sh'
[platform/upstream/automake.git] / t / check2.sh
1 #! /bin/sh
2 # Copyright (C) 2002-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 # Test Automake style tests.
18
19 . ./defs || Exit 1
20
21 cat >> configure.ac << 'END'
22 AC_CONFIG_FILES([dir/Makefile])
23 AC_OUTPUT
24 END
25
26 mkdir dir
27
28 cat > Makefile.am << 'END'
29 SUBDIRS = dir
30 TESTS = \
31   subrun.sh
32 subrun.sh:
33         (echo '#! /bin/sh'; echo 'dir/echo.sh') > $@
34         chmod +x $@
35 CLEANFILES = subrun.sh
36 END
37
38 cat > dir/Makefile.am << 'END'
39 check_SCRIPTS = echo.sh
40 echo.sh:
41         (echo '#! /bin/sh'; echo 'echo Hello') > $@
42         chmod +x $@
43 CLEANFILES = echo.sh
44 END
45
46 if test x"$am_parallel_tests" = x"yes"; then
47   cp "$am_scriptdir/test-driver" .
48 fi
49
50 $ACLOCAL
51 $AUTOCONF
52 $AUTOMAKE
53 ./configure
54
55 $MAKE check >stdout || { cat stdout; Exit 1; }
56 cat stdout
57 grep '^PASS: subrun\.sh *$' stdout
58 grep 'PASS.*echo\.sh' stdout && Exit 1
59
60 # 'check' should depend directly on 'check-am' (similar tests are
61 # in check.test and check3.test).
62 $EGREP '^check:.* check-recursive( |$)' Makefile.in
63 $EGREP '^check:.* check-am( |$)' dir/Makefile.in
64
65 # Make sure subrun.sh is still on its line as above.  This means Automake
66 # hasn't rewritten the TESTS line unnecessarily (we can tell, because all
67 # Automake variables are reformatted by VAR_PRETTY).
68 grep '^  subrun\.sh$' Makefile.in
69
70 :