NetBSD/gnu/dist/texinfo/makeinfo/tests/top2

12 lines
276 B
Bash
Executable File

#!/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 --force -o top2.html --html $srcdir/top2.txi 2>/dev/null
test -s top2.html
exit_status=$?
rm -f top2.html
exit $exit_status