summaryrefslogtreecommitdiff
path: root/tests/colon.test
diff options
context:
space:
mode:
authorTom Tromey <tromey@redhat.com>1996-08-04 19:13:40 +0000
committerTom Tromey <tromey@redhat.com>1996-08-04 19:13:40 +0000
commitd75170123d8ec788ead9bb12b01f8abeaddbdd65 (patch)
tree7603b07c9286032bc12f4100059173f5d7dc10a5 /tests/colon.test
parent9628f3ab9a1c869f64c6061232a8cd68356de2e1 (diff)
downloadautomake-d75170123d8ec788ead9bb12b01f8abeaddbdd65.tar.gz
Bug and doc fixes
Diffstat (limited to 'tests/colon.test')
-rwxr-xr-xtests/colon.test20
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/colon.test b/tests/colon.test
new file mode 100755
index 000000000..672bb54b7
--- /dev/null
+++ b/tests/colon.test
@@ -0,0 +1,20 @@
+#! /bin/sh
+
+# Test for bug reported by Nyul Laszlo. When using the ":" syntax in
+# AC_OUTPUT, Automake fails to find the correct file.
+
+. $srcdir/defs || exit 1
+
+cat > configure.in << 'END'
+PACKAGE=nonesuch
+VERSION=nonesuch
+AC_ARG_PROGRAM
+AC_PROG_INSTALL
+AC_OUTPUT(Makefile foo.h:foo.hin)
+END
+
+: > Makefile.am
+: > foo.hin
+: > stamp-h.in
+
+$AUTOMAKE