]> sourceware.org Git - automake.git/commitdiff
* tests/Makefile.am (TESTS): Added new file.
authorTom Tromey <tromey@redhat.com>
Sun, 6 May 2001 18:03:46 +0000 (18:03 +0000)
committerTom Tromey <tromey@redhat.com>
Sun, 6 May 2001 18:03:46 +0000 (18:03 +0000)
(XFAIL_TESTS): Likewise.
* tests/texinfo10.test: New file.

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

index 9cfbbe05f110ffebf6d2649bea498bcd4ef7102e..71f9f390109ea6c4012b3c27ebdc42e6ae53e0ff 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-05-06  Tom Tromey  <tromey@redhat.com>
+
+       * tests/Makefile.am (TESTS): Added new file.
+       (XFAIL_TESTS): Likewise.
+       * tests/texinfo10.test: New file.
+
 2001-05-05  Pavel Roskin <proski@gnu.org>
 
        * automake.in (scan_texinfo_file): Treat @defindex and @synindex
index 1aa594882a22aa412c2d67d8571238d3fdc6bc3b..f785b5e4d300585ec7da31daff45dd14d39f5838 100644 (file)
@@ -2,7 +2,7 @@
 
 AUTOMAKE_OPTIONS = gnits
 
-XFAIL_TESTS = objc.test subobj2.test yaccvpath.test
+XFAIL_TESTS = objc.test subobj2.test yaccvpath.test texinfo10.test
 
 TESTS =        \
 acinclude.test \
@@ -267,6 +267,7 @@ texinfo6.test \
 texinfo7.test \
 texinfo8.test \
 texinfo9.test \
+texinfo10.test \
 unused.test \
 vartar.test \
 version.test \
index 2da55d08368b292fec075dc9ca83d06f2cd08e03..6e54e3b4069347f366d7e4a74bf8d49a11759874 100644 (file)
@@ -75,7 +75,7 @@ install_sh = @install_sh@
 
 AUTOMAKE_OPTIONS = gnits
 
-XFAIL_TESTS = objc.test subobj2.test yaccvpath.test
+XFAIL_TESTS = objc.test subobj2.test yaccvpath.test texinfo10.test
 
 TESTS = \
 acinclude.test \
@@ -340,6 +340,7 @@ texinfo6.test \
 texinfo7.test \
 texinfo8.test \
 texinfo9.test \
+texinfo10.test \
 unused.test \
 vartar.test \
 version.test \
diff --git a/tests/texinfo10.test b/tests/texinfo10.test
new file mode 100755 (executable)
index 0000000..80ebf8a
--- /dev/null
@@ -0,0 +1,22 @@
+#! /bin/sh
+
+# Make sure dvi target recurses into subdir.
+# Reported by Pavel Roskin
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+SUBDIRS = sub
+END
+
+mkdir sub
+cat > sub/Makefile.am << 'END'
+info_TEXINFOS = maude.texi
+END
+
+echo '@setfilename maude.info' > sub/maude.texi
+: > sub/texinfo.tex
+
+$AUTOMAKE || exit 1
+
+grep dvi-recursive Makefile.in
This page took 0.036125 seconds and 5 git commands to generate.