test harness: improve catching of usage errors in script 'test-driver'
[platform/upstream/automake.git] / t / parallel-tests-generated-and-distributed.sh
1 #! /bin/sh
2 # Copyright (C) 2009-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 parallel-tests features:
18 # - generated distributed tests.
19 # - listing $(srcdir)/ or $(top_srcdir)/ in TESTS doesn't work ATM,
20 #   and is thus diagnosed.
21
22 # TODO: this test should also ensure that the 'make' implementation
23 #       properly adheres to rules in all cases.  See the Autoconf
24 #       manual for the ugliness in this area, when VPATH comes into
25 #       play.  :-/
26
27 . test-init.sh
28
29 cat >> configure.ac << 'END'
30 AC_OUTPUT
31 END
32
33 cat > Makefile.am << 'END'
34 TESTS = foo.test
35 ## the next line will cause automake to error out:
36 TESTS += $(srcdir)/bar.test $(top_srcdir)/baz.test
37 .in.test:
38 ## Account for VPATH issues on weaker make implementations (e.g. IRIX 6.5)
39         cp `test -f '$<' || echo $(srcdir)/`$< $@
40         chmod +x $@
41 check_SCRIPTS = $(TESTS)
42 EXTRA_DIST = foo.in foo.test
43 DISTCLEANFILES = foo.test
44 END
45
46 cat > foo.in <<'END'
47 #! /bin/sh
48 echo "this is $0"
49 exit 0
50 END
51
52 $ACLOCAL
53 $AUTOCONF
54 AUTOMAKE_fails -a
55 grep '$(srcdir).*TESTS.*bar\.test' stderr
56 grep '$(top_srcdir).*TESTS.*baz\.test' stderr
57
58 sed '/^TESTS +=.*srcdir/d' < Makefile.am > t
59 mv -f t Makefile.am
60 $AUTOMAKE -a
61
62 ./configure
63 $MAKE check
64 $MAKE distcheck
65 $MAKE distclean
66
67 mkdir build
68 cd build
69 ../configure
70 $MAKE check
71 test ! -e ../foo.log
72 $MAKE distcheck
73
74 :