]> sourceware.org Git - automake.git/commitdiff
* dup3.test: New file.
authorTom Tromey <tromey@redhat.com>
Wed, 15 Dec 1999 19:01:33 +0000 (19:01 +0000)
committerTom Tromey <tromey@redhat.com>
Wed, 15 Dec 1999 19:01:33 +0000 (19:01 +0000)
* Makefile.am (TESTS): Added dup3.test.

tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/dup3.test [new file with mode: 0755]

index e7b5440dd5a3a8ba3971f2744f8f800de10bb659..813d740d5c8347f315e83d89b038be8212f99440 100644 (file)
@@ -1,3 +1,8 @@
+1999-12-15  Tom Tromey  <tromey@cygnus.com>
+
+       * dup3.test: New file.
+       * Makefile.am (TESTS): Added dup3.test.
+
 1999-12-13  Tom Tromey  <tromey@cygnus.com>
 
        * pr19.test: New file.  For PR automake/19.
index 4e030a4ff2a1bb3059d6b9c3a1600f5c52f58cf8..975aa251f608a3236def5e06b9c8c21ace45af2e 100644 (file)
@@ -89,6 +89,7 @@ distdir.test \
 double.test \
 dup.test \
 dup2.test \
+dup3.test \
 else.test \
 empty.test \
 empty2.test \
index 3f04a4ca90c674395d9a9d47511b6c79e3c28a37..dffd0300b8a8f29adfce1053ac178d1d23e07134 100644 (file)
@@ -156,6 +156,7 @@ distdir.test \
 double.test \
 dup.test \
 dup2.test \
+dup3.test \
 else.test \
 empty.test \
 empty2.test \
diff --git a/tests/dup3.test b/tests/dup3.test
new file mode 100755 (executable)
index 0000000..4e46141
--- /dev/null
@@ -0,0 +1,17 @@
+#! /bin/sh
+
+# Make sure aclocal searches includes in the right order.
+
+. $srcdir/defs || exit 1
+
+cat >> configure.in << 'END'
+AM_INIT_AUTOMAKE
+END
+
+mkdir zoo
+cat > zoo/zoo.m4 << 'END'
+AC_DEFUN(AM_INIT_AUTOMAKE, zardoz)
+END
+
+$ACLOCAL -I zoo || exit 1
+fgrep zardoz aclocal.m4
This page took 0.031297 seconds and 5 git commands to generate.