1234567891011121314151617 |
- #!/bin/sh
- # $Id: html-top,v 1.2 2010-12-04 00:05:54 karl Exp $
- # Public domain. Test that a bare top node does not crash with --html.
- unset TEXINFO_OUTPUT LANG LANGUAGE
- LC_ALL=POSIX; export LC_ALL
- : ${srcdir=.}
- # But this input file is erroneous, so throw away errors.
- ../makeinfo --no-split --force -o html-top.html --html $srcdir/html-top.txi \
- 2>/dev/null
- test -s html-top.html
- exit_status=$?
- rm -f html-top.html
- exit $exit_status
|