maint: Update HACKING
[automake.git] / t / check-exported-srcdir.sh
blob5050fe032f2bcb7fd0b4933c904e008a27267084
1 #! /bin/sh
2 # Copyright (C) 2011-2017 Free Software Foundation, Inc.
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.
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.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <https://www.gnu.org/licenses/>.
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.
21 # For gen-testsuite-part: ==> try-with-serial-tests <==
22 . test-init.sh
24 show_info ()
26 if test x"$am_serial_tests" != x"yes"; then
27 cat foo.log
28 cat test-suite.log
29 else
34 mkdir SrcDir
35 mv [!S]* SrcDir
36 mkdir BuildDir
37 cd SrcDir
39 cat >> configure.ac << 'END'
40 AC_OUTPUT
41 END
43 cat > Makefile.am << 'END'
44 TESTS = foo.test
45 END
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
54 $ACLOCAL
55 $AUTOCONF
56 $AUTOMAKE -a
58 cd ../BuildDir
59 ../SrcDir/configure
61 $MAKE check || { show_info; exit 1; }
62 show_info