summaryrefslogtreecommitdiff
path: root/makeinfo/tests/html-title
blob: 54badd51fadda65a4a493ba0d5079a0d28d097d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/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