summaryrefslogtreecommitdiff
path: root/t/extra-dist-wildcards.sh
diff options
context:
space:
mode:
authorStefano Lattarini <stefano.lattarini@gmail.com>2013-01-02 15:19:55 +0100
committerStefano Lattarini <stefano.lattarini@gmail.com>2013-01-02 15:19:55 +0100
commit1a23ae3037d49075d06df2a17d17d00e12c9f788 (patch)
treeafbf13968e5e5edbd43b504e77cbf9ef5e0ff023 /t/extra-dist-wildcards.sh
parent829c01d5385ee4d3af121d3d85bf27cc009ab5c7 (diff)
parent97d770d69c3522beab5aec18d135d84b3b5eb449 (diff)
downloadautomake-1a23ae3037d49075d06df2a17d17d00e12c9f788.tar.gz
Merge branch 'master' into ng/master
* master: tests: reorganize tests on backslash issues style: add trailing ':' to some test cases tests: tweak tests on obsolete EXTRA_DATA variable tests: more significant names for some tests cosmetics: remove few occurrences of trailing whitespace docs: re-introduce mention of two-args AM_INIT_AUTOMAKE invocation texi: warn against '.txi' and '.texinfo' input suffixes cleanup: remove two lines of dead code in automake texi: warn against suffix-less info files build: respect silent rules in generation of "amhello" example tarball NEWS: fixlets and updates post-release: minor version bump (1.13.1a) release: stable minor release 1.13.1 Signed-off-by: Stefano Lattarini <stefano.lattarini@gmail.com>
Diffstat (limited to 't/extra-dist-wildcards.sh')
-rwxr-xr-xt/extra-dist-wildcards.sh49
1 files changed, 49 insertions, 0 deletions
diff --git a/t/extra-dist-wildcards.sh b/t/extra-dist-wildcards.sh
new file mode 100755
index 000000000..15ab4403a
--- /dev/null
+++ b/t/extra-dist-wildcards.sh
@@ -0,0 +1,49 @@
+#! /bin/sh
+# Copyright (C) 2010-2013 Free Software Foundation, Inc.
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2, or (at your option)
+# any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+# Check that wildcards in EXTRA_DIST are honoured.
+# Suggested by observations from Braden McDaniel.
+# See also sister test 'extra11.sh', that checks a similar usage
+# with the involvement of the $(wildcard) GNU make builtin.
+
+. test-init.sh
+
+echo AC_OUTPUT >> configure.ac
+
+cat > Makefile.am <<'END'
+EXTRA_DIST = *.foo
+.PHONY: test
+test: distdir
+ diff a.foo $(distdir)/a.foo
+ diff b.foo $(distdir)/b.foo
+ test ! -r $(distdir)/c.bar
+check-local:
+ test -f $(srcdir)/a.foo
+ test -f $(srcdir)/b.foo
+ test ! -r $(srcdir)/c.bar
+END
+
+$ACLOCAL
+$AUTOMAKE
+$AUTOCONF
+
+echo aaa > a.foo
+echo bbb > b.foo
+echo ccc > c.bar
+./configure
+$MAKE test
+
+: