2 # Copyright (C) 2009-2012 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)
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 <http://www.gnu.org/licenses/>.
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.
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
29 cat >> configure.ac
<< 'END'
33 cat > Makefile.am
<< 'END'
35 ## the next line will cause automake to error out:
36 TESTS
+= $
(srcdir
)/bar.
test $
(top_srcdir
)/baz.
test
38 ## Account for VPATH issues on weaker make implementations (e.g. IRIX 6.5)
39 cp `test -f '$<' || echo $(srcdir)/`$
< $@
41 check_SCRIPTS
= $
(TESTS
)
42 EXTRA_DIST
= foo.
in foo.
test
43 DISTCLEANFILES
= foo.
test
55 grep '$(srcdir).*TESTS.*bar\.test' stderr
56 grep '$(top_srcdir).*TESTS.*baz\.test' stderr
58 sed '/^TESTS +=.*srcdir/d' < Makefile.am
> t