tests: remove recipes that run tests with 'prove'
[platform/upstream/automake.git] / t / pr2.sh
1 #! /bin/sh
2 # Copyright (C) 1999-2012 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 # Test for bug reported in PR 2.
18 # "make dist" fails for AC_OUTPUT(README.foo:templ/README.foo.in).
19 #
20 # == Report ==
21 # When my AC_OUTPUT macro in configure.ac contains something
22 # like the following (among the Makefiles)
23 #       README.foo:templ/README.foo.in
24 # the generated dist target in the Makefile.in fails,
25 # because DIST_COMMON will contain templ/README.foo.in
26 # and the dist target will try to copy templ/README.foo.in
27 # to the distribution directory before it creates a templ
28 # subdirectory in the distribution directory.
29
30 . ./defs || Exit 1
31
32 # Please keep this underquoted and old-style.
33 cat > configure.ac << 'END'
34 AC_INIT
35 AM_INIT_AUTOMAKE(nonesuch, nonesuch)
36 AC_OUTPUT(README.foo:templ/README.foo.in Makefile)
37 END
38
39 : > Makefile.am
40
41 mkdir templ
42 : > templ/README.foo.in
43
44 $ACLOCAL
45 $AUTOCONF
46 $AUTOMAKE
47 ./configure
48 $MAKE distdir
49 test -f nonesuch-nonesuch/templ/README.foo.in
50
51 :