source:
trunk/essentials/sys-apps/texinfo/makeinfo/tests/html-extrali
Last change on this file was 2617, checked in by , 19 years ago | |
---|---|
File size: 272 bytes |
Line | |
---|---|
1 | #!/bin/sh |
2 | # Test no extra <li> from @menu. |
3 | |
4 | : ${srcdir=.} |
5 | |
6 | li_count=`../makeinfo --no-split --html -o - $srcdir/html-extrali.txi 2>/dev/null \ |
7 | | grep '<li>' \ |
8 | | wc -l` |
9 | |
10 | if test "$li_count" -ne 1; then |
11 | echo "$li_count <li>s instead of one." >&2 |
12 | exit 1 |
13 | else |
14 | exit 0 |
15 | fi |
Note:
See TracBrowser
for help on using the repository browser.