2 # Copyright (C) 2011-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 regression of parallel-tests:
18 # - 'test-driver' script not correctly distributed when TESTS is
19 # defined in a subdir Makefile
21 am_create_testdir
=empty
24 ocwd
=$
(pwd) || fatal_
"getting current working directory"
29 if test $i -eq 1; then
31 test_driver
=test-driver
34 test_driver
=$auxdir/test-driver
38 unindent
> configure.ac
<< END
40 AC_CONFIG_AUX_DIR([$auxdir])
42 AC_CONFIG_FILES([Makefile tests/Makefile])
45 unindent
> Makefile.am
<< END
49 ls -l \$(distdir) \$(distdir)/* ;: For debugging.
50 test -f \$(distdir)/$test_driver
53 unindent
> tests
/Makefile.am
<< END
56 echo ' ' \$(DIST_COMMON) ' ' | grep '[ /]$test_driver '
58 EXTRA_DIST = \$(TESTS)
60 unindent
> tests
/foo.
test << 'END'
64 chmod a
+x
tests
/foo.
test
74 # Try code path without automatic installation of required files.
75 mv -f Makefile.
in Makefile.sav
76 mv -f tests
/Makefile.
in tests
/Makefile.sav
78 diff Makefile.
in Makefile.sav
79 diff tests
/Makefile.
in tests
/Makefile.sav
80 cd "$ocwd" || fatal_
"cannot chdir back to '$ocwd'"