]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
New test
authorTom Tromey <tromey@redhat.com>
Thu, 4 Apr 1996 00:19:25 +0000 (00:19 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 4 Apr 1996 00:19:25 +0000 (00:19 +0000)
TODO
tests/ChangeLog
tests/Makefile.am
tests/Makefile.in
tests/canon2.test [new file with mode: 0755]

diff --git a/TODO b/TODO
index 4ebe1a7edc0dc394be643d11be56183970fb6e34..dfce8452026f05661f9be04b2787fab41ec5de65 100644 (file)
--- a/TODO
+++ b/TODO
@@ -3,7 +3,7 @@ Priorities for release:
 * Add support for libtool
 * look at guile-ref; not all .texi are distributed!
   problem is canonical naming; add test for this.
-* install-sh message can appear multiple times: bogus!
+* At top level, config.h is not depended on...
 
 Other priorities:
 * Must rewrite am_install_var.  Should break into multiple functions.
index 819c02494871e54b6ce26b3bd8c5dda4dbc5126b..8d1262f070fd3b3942a6355ffbc26e27a3694db5 100644 (file)
@@ -1,5 +1,7 @@
 Wed Apr  3 15:10:54 1996  Tom Tromey  <tromey@creche.cygnus.com>
 
+       * canon2.test: New file
+
        * insh.test: New file.
 
 Wed Mar 27 23:31:51 1996  Tom Tromey  <tromey@creche.cygnus.com>
index 1dba1a934b7d50675be82bfa5d29bdb230849a26..ebf31e21800cf67bca78f7a0e429cb6a6251eb68 100644 (file)
@@ -5,7 +5,7 @@ AUTOMAKE_OPTIONS = gnits
 TESTS = mdate.test vtexi.test acoutput.test instexec.test checkall.test \
 acoutnoq.test acouttbs.test libobj.test proginst.test acoutqnl.test \
 confincl.test spelling.test prefix.test badprog.test depend.test exdir.test \
-canon.test installsh.test empty.test rulepat.test insh.test
+canon.test installsh.test empty.test rulepat.test insh.test canon2.test
 
 ## Maybe automake should distribute TESTS?  You tell me.
 EXTRA_DIST = defs $(TESTS)
index 61701e355d1787c5b6ecb10c8669243569941acb..2c6b500b0331b70092adb46a5757a04dc80f4b16 100644 (file)
@@ -43,7 +43,7 @@ AUTOMAKE_OPTIONS = gnits
 TESTS = mdate.test vtexi.test acoutput.test instexec.test checkall.test \
 acoutnoq.test acouttbs.test libobj.test proginst.test acoutqnl.test \
 confincl.test spelling.test prefix.test badprog.test depend.test exdir.test \
-canon.test installsh.test empty.test rulepat.test insh.test
+canon.test installsh.test empty.test rulepat.test insh.test canon2.test
 
 EXTRA_DIST = defs $(TESTS)
 DIST_COMMON = ChangeLog Makefile.am Makefile.in
diff --git a/tests/canon2.test b/tests/canon2.test
new file mode 100755 (executable)
index 0000000..83b49e9
--- /dev/null
@@ -0,0 +1,19 @@
+#! /bin/sh
+
+# Test to make sure name canonicalization happens for texinfo.
+
+. $srcdir/defs || exit 1
+
+cat > Makefile.am << 'END'
+info_TEXINFOS = zar-doz.texi
+zar_doz_TEXINFOS = frob.texi
+END
+
+: > texinfo.tex
+: > zar-doz.texi
+: > frob.texi
+
+$AUTOMAKE || exit 1
+
+grep zar-doz_TEXINFOS Makefile.in && exit 1
+exit 0