tests: rename 'tests/' => 't/', '*.test' => '*.sh'
[platform/upstream/automake.git] / t / am-tests-environment.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 # parallel-tests: check AM_TESTS_ENVIRONMENT support, and its
18 # interactions with TESTS_ENVIRONMENT.
19
20 am_parallel_tests=yes
21 . ./defs || Exit 1
22
23 cat >> configure.ac << 'END'
24 AC_PROG_MKDIR_P
25 AC_OUTPUT
26 END
27
28 cat > Makefile.am << 'END'
29 TEST_EXTENSIONS = .sh .test
30 TESTS = foo.test bar.sh
31 SH_LOG_COMPILER = sh
32 AM_TESTS_ENVIRONMENT = \
33   $(MKDIR_P) quux.dir; \
34   if test -f $(srcdir)/test-env.sh; then \
35     . $(srcdir)/test-env.sh; \
36   fi; \
37   FOO=1; export FOO;
38 EXTRA_DIST = $(TESTS) test-env.sh
39 END
40
41 cat > foo.test << 'END'
42 #! /bin/sh
43 ls -l && test -d quux.dir
44 END
45 chmod a+x foo.test
46
47 cat > bar.sh << 'END'
48 echo "FOO='$FOO'"
49 echo "BAR='$BAR'"
50 test x"$FOO" = x"$BAR"
51 END
52
53 debug_info ()
54 {
55   cat test-suite.log
56   cat foo.log
57   cat bar.log
58 }
59
60 minicheck ()
61 {
62   debug_info
63   test -d quux.dir
64 }
65
66 miniclean ()
67 {
68   rmdir quux.dir
69   rm -f foo.log bar.log test-suite.log
70 }
71
72 $ACLOCAL
73 $AUTOCONF
74 $AUTOMAKE -a
75
76 ./configure
77
78 TESTS_ENVIRONMENT='BAR=1' $MAKE check || { debug_info; Exit 1; }
79 minicheck
80 miniclean
81
82 TESTS_ENVIRONMENT='BAR=2' $MAKE check && { debug_info; Exit 1; }
83 minicheck
84 miniclean
85
86 echo 'BAR=1 && export BAR' > test-env.sh
87 $MAKE check || { debug_info; Exit 1; }
88 minicheck
89 $MAKE distcheck
90
91 :