From: Tom Tromey Date: Thu, 4 Apr 1996 00:19:25 +0000 (+0000) Subject: New test X-Git-Tag: Release-0-32~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=564b77c858abdc9eefa687014e306d1d86c16b7f;p=thirdparty%2Fautomake.git New test --- diff --git a/TODO b/TODO index 4ebe1a7ed..dfce84520 100644 --- 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. diff --git a/tests/ChangeLog b/tests/ChangeLog index 819c02494..8d1262f07 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,7 @@ Wed Apr 3 15:10:54 1996 Tom Tromey + * canon2.test: New file + * insh.test: New file. Wed Mar 27 23:31:51 1996 Tom Tromey diff --git a/tests/Makefile.am b/tests/Makefile.am index 1dba1a934..ebf31e218 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -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) diff --git a/tests/Makefile.in b/tests/Makefile.in index 61701e355..2c6b500b0 100644 --- a/tests/Makefile.in +++ b/tests/Makefile.in @@ -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 index 000000000..83b49e9ef --- /dev/null +++ b/tests/canon2.test @@ -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