blob: 7bc27c14c4a330c5325bc477c3ae0ac0412409fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
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
|