tests: cosmetic changes in t/extra-sources.sh
[platform/upstream/automake.git] / t / check-exported-srcdir.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 (either with or without the
18 # serial-tests option enabled) exports the 'srcdir' value in the
19 # environment of the tests.  This is documented in the manual.
20
21 # For gen-testsuite-part: ==> try-with-serial-tests <==
22 . test-init.sh
23
24 show_info ()
25 {
26   if test x"$am_serial_tests" != x"yes"; then
27      cat foo.log
28      cat test-suite.log
29   else
30      :
31   fi
32 }
33
34 mkdir SrcDir
35 mv [!S]* SrcDir
36 mkdir BuildDir
37 cd SrcDir
38
39 cat >> configure.ac << 'END'
40 AC_OUTPUT
41 END
42
43 cat > Makefile.am << 'END'
44 TESTS = foo.test
45 END
46
47 cat > foo.test <<'END'
48 #!/bin/sh
49 echo "foo.test: srcdir='$srcdir'"
50 test x"$srcdir" = x"../SrcDir"
51 END
52 chmod a+x foo.test
53
54 $ACLOCAL
55 $AUTOCONF
56 $AUTOMAKE -a
57
58 cd ../BuildDir
59 ../SrcDir/configure
60
61 $MAKE check || { show_info; exit 1; }
62 show_info
63
64 :