repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
texinfo
/
makeinfo
/
tests
/
html-extrali
blob
c3ec9ca08d56488e0553d7ce1b7a8199916c80e0
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