]> git.ipfire.org Git - thirdparty/automake.git/commitdiff
* texinfo8.test: New file.
authorAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 7 Apr 1999 01:59:32 +0000 (01:59 +0000)
committerAlexandre Oliva <oliva@dcc.unicamp.br>
Wed, 7 Apr 1999 01:59:32 +0000 (01:59 +0000)
* Makefile.am (TESTS): Added texinfo8.test.

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

index 0d14c01cf81fc5cfc5b9ea369f647f94f89e5e0c..030de6700c25cabf09532de1b888322937b9e308 100644 (file)
@@ -1,3 +1,8 @@
+1999-04-07  Alexandre Oliva  <oliva@dcc.unicamp.br>
+
+       * texinfo8.test: New file.
+       * Makefile.am (TESTS): Added texinfo8.test.
+
 1999-03-31  Tom Tromey  <tromey@cygnus.com>
 
        * pluseq2.test, pluseq3.test: Updated for recent \-preservation
index b8511e3ea8065485a0ae7b35ca1d9f50e253660b..6e49e3bbeb8064a21a618c4f5a289f44a0d238df 100644 (file)
@@ -41,8 +41,9 @@ spell3.test spelling.test stamph.test stdlib.test subdir.test \
 subdir2.test subdir3.test subst.test symlink.test syntax.test \
 tags.test tagsub.test target.test texinfo.test texinfo2.test \
 texinfo3.test texinfo4.test texinfo5.test texinfo6.test texinfo7.test \
-unused.test version.test version2.test version3.test vpath.test        \
-vtexi.test vtexi2.test whoami.test xsource.test yacc.test yaccpp.test
+texinfo8.test unused.test version.test version2.test version3.test \
+vpath.test vtexi.test vtexi2.test whoami.test xsource.test yacc.test \
+yaccpp.test
 
 EXTRA_DIST = defs $(TESTS)
 
index 8a878da9ca253e7d932584bad2dbb37f2d019a99..197e164f0aad8b6ebea9de3e171c354f79821f12 100644 (file)
@@ -106,8 +106,9 @@ spell3.test spelling.test stamph.test stdlib.test subdir.test \
 subdir2.test subdir3.test subst.test symlink.test syntax.test \
 tags.test tagsub.test target.test texinfo.test texinfo2.test \
 texinfo3.test texinfo4.test texinfo5.test texinfo6.test texinfo7.test \
-unused.test version.test version2.test version3.test vpath.test        \
-vtexi.test vtexi2.test whoami.test xsource.test yacc.test yaccpp.test
+texinfo8.test unused.test version.test version2.test version3.test \
+vpath.test vtexi.test vtexi2.test whoami.test xsource.test yacc.test \
+yaccpp.test
 
 
 EXTRA_DIST = defs $(TESTS)
diff --git a/tests/texinfo8.test b/tests/texinfo8.test
new file mode 100755 (executable)
index 0000000..aabde05
--- /dev/null
@@ -0,0 +1,27 @@
+#! /bin/sh
+
+# Test to make sure texinfo.tex correctly installed by -a when we're
+# using AC_CONFIG_AUX_DIR.  Bug report by by Per Cederqvist.
+
+. $srcdir/defs || exit 1
+
+echo 'AC_CONFIG_AUX_DIR(aux)' >> configure.in
+
+cat > Makefile.am << 'END'
+info_TEXINFOS = textutils.texi
+magic:
+       @echo $(DISTFILES)
+END
+
+echo '@setfilename textutils.info' > textutils.texi
+
+test -d aux || mkdir aux
+
+$AUTOMAKE -a || exit 1
+
+test -f aux/texinfo.tex &&
+$MAKE -s -f Makefile.in SHELL=/bin/sh magic | grep 'aux/texinfo\.tex'
+stat=$?
+
+rm -rf aux
+exit $stat