diff options
Diffstat (limited to 'Build/source/utils/texinfo/makeinfo/tests/top2')
-rwxr-xr-x | Build/source/utils/texinfo/makeinfo/tests/top2 | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Build/source/utils/texinfo/makeinfo/tests/top2 b/Build/source/utils/texinfo/makeinfo/tests/top2 new file mode 100755 index 00000000000..7bc27c14c4a --- /dev/null +++ b/Build/source/utils/texinfo/makeinfo/tests/top2 @@ -0,0 +1,12 @@ +#!/bin/sh +# Test that a bare top node does not crash with --html. + +: ${srcdir=.} + +# But this input file is erroneous, so throw away errors. +../makeinfo --no-split --force -o top2.html --html $srcdir/top2.txi 2>/dev/null +test -s top2.html +exit_status=$? + +rm -f top2.html +exit $exit_status |