Sync usage with man page.
[netbsd-mini2440.git] / gnu / dist / texinfo / makeinfo / tests / html-title
blob54badd51fadda65a4a493ba0d5079a0d28d097d6
1 #!/bin/sh
2 # Test that titles with @ commands don't produce markup in the <title>.
3 # (And that the @ commands get expanded.)
5 if ../makeinfo --no-split --html ${srcdir-.}/html-title.txi; then
6 grep '^<title>@[^<>]*</title>$' html-title.html >/dev/null
7 exit_status=$?
8 else
9 exit_status=1
12 rm -f html-title.html
13 exit $exit_status