NetBSD/gnu/dist/texinfo/makeinfo/tests/html-title
2003-01-17 14:54:14 +00:00

14 lines
334 B
Bash
Executable File

#!/bin/sh
# Test that titles with @ commands don't produce markup in the <title>.
# (And that the @ commands get expanded.)
if ../makeinfo --no-split --html ${srcdir-.}/html-title.txi; then
grep '^<title>@[^<>]*</title>$' html-title.html >/dev/null
exit_status=$?
else
exit_status=1
fi
rm -f html-title.html
exit $exit_status