]> sourceware.org Git - automake.git/commitdiff
* badline.test: New file.
authorTom Tromey <tromey@redhat.com>
Mon, 5 Oct 1998 11:53:17 +0000 (11:53 +0000)
committerTom Tromey <tromey@redhat.com>
Mon, 5 Oct 1998 11:53:17 +0000 (11:53 +0000)
* Makefile.am (TESTS): Added badline.test.

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

index f54b8fa8deb473049099fb384670021c0353aff7..cbecf8d587f39d22fb39c9cddbca05831dd618e7 100644 (file)
@@ -1,3 +1,8 @@
+Mon Oct  5 12:47:32 1998  Tom Tromey  <tromey@cygnus.com>
+
+       * badline.test: New file.
+       * Makefile.am (TESTS): Added badline.test.
+
 Thu Oct  1 00:03:39 1998  Tom Tromey  <tromey@cygnus.com>
 
        * seenc.test: Updated test to account for removed line numbers.
index e7f296f60c8097e90da7909c677037e28a65f95e..d1dcb94acf3108cd4bfc1349a2f6647bf8f6296b 100644 (file)
@@ -33,7 +33,7 @@ java.test sinclude.test javaprim.test javasubst.test aclocalii.test \
 lex2.test libobj8.test version3.test instdata.test exdir2.test \
 colon5.test library.test syntax.test cond4.test cond5.test recurs.test \
 ansi3.test cond6.test colon6.test texinfo7.test parse.test else.test \
-clean.test recurs2.test config.test colon7.test
+clean.test recurs2.test config.test colon7.test badline.test
 
 EXTRA_DIST = defs $(TESTS)
 
diff --git a/tests/badline.test b/tests/badline.test
new file mode 100755 (executable)
index 0000000..16ad128
--- /dev/null
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+# Test to make sure that line number and file name in error message
+# referring to variable is always correct.
+
+. $srcdir/defs || exit 1
+
+cat >> configure.in << 'END'
+AC_SUBST(TEXINFOS)
+END
+
+: > Makefile.am
+
+$AUTOMAKE > out 2>&1 && exit 1
+grep Makefile out && exit 1
+exit 0
This page took 0.034305 seconds and 5 git commands to generate.