mirror of
https://github.com/berkeleydb/libdb.git
synced 2024-11-16 09:06:25 +00:00
43 lines
856 B
Bash
43 lines
856 B
Bash
#!/bin/sh -
|
|
#
|
|
# $Id$
|
|
#
|
|
# Check spelling in quoted strings.
|
|
|
|
d=../..
|
|
[ -f $d/LICENSE ] || {
|
|
echo 'FAIL: cannot find source distribution directory.'
|
|
exit 1
|
|
}
|
|
|
|
t1=__1
|
|
|
|
sed -e '/^#include/d' \
|
|
-e '/"/!d' \
|
|
-e 's/^[^"]*//' \
|
|
-e 's/%s/ /g' \
|
|
-e 's/[^"]*$//' \
|
|
-e 's/\\[nt]/ /g' \
|
|
`find $d -name '*.[ch]' -o -name '*.cpp' -o -name '*.java' |
|
|
sed -e '/\/perl\//d' -e '/\/test_erlang\//d'` |
|
|
spell | sort -u | comm -23 /dev/stdin s_chk_spell.dict > $t1
|
|
|
|
test -s $t1 && {
|
|
cat $t1
|
|
echo "FAIL: found questionable spelling in strings."
|
|
exit 1
|
|
}
|
|
|
|
egrep -h '/\* | \* ' \
|
|
`find $d -name '*.[ch]' -o -name '*.cpp' | sed -e '/\/perl\//d' -e '/\/test_erlang\//d'` |
|
|
spell | sort -u | comm -23 /dev/stdin s_chk_spell.dict > $t1
|
|
|
|
test -s $t1 && {
|
|
cat $t1
|
|
echo "FAIL: found questionable spelling in comments."
|
|
exit 1
|
|
}
|
|
|
|
rm -f $t1
|
|
|
|
exit 0
|