xref: /openbsd-src/gnu/usr.bin/texinfo/makeinfo/tests/html-top (revision a1acfa9b69ad64eb720639240c8438f11107dc85)
1*a1acfa9bSespie#!/bin/sh
2*a1acfa9bSespie# Test that a bare top node does not crash with --html.
3*a1acfa9bSespie
4*a1acfa9bSespie: ${srcdir=.}
5*a1acfa9bSespie
6*a1acfa9bSespie# But this input file is erroneous, so throw away errors.
7*a1acfa9bSespie../makeinfo --no-split --force -o html-top.html --html $srcdir/html-top.txi \
8*a1acfa9bSespie2>/dev/null
9*a1acfa9bSespietest -s html-top.html
10*a1acfa9bSespieexit_status=$?
11*a1acfa9bSespie
12*a1acfa9bSespierm -f html-top.html
13*a1acfa9bSespieexit $exit_status
14