mirror of
https://github.com/MariaDB/server.git
synced 2025-01-20 14:02:32 +01:00
43 lines
897 B
Bash
43 lines
897 B
Bash
#!/bin/sh -
|
|
#
|
|
# $Id: chk.inc,v 1.1 2002/02/10 17:14:33 bostic Exp $
|
|
#
|
|
# Check for inclusion of db_config.h after "const" or other includes.
|
|
|
|
d=../..
|
|
|
|
# Test must be run from the top-level directory, not from a test directory.
|
|
[ -f $d/LICENSE ] || {
|
|
echo 'FAIL: cannot find source distribution directory.'
|
|
exit 1
|
|
}
|
|
|
|
t1=__1
|
|
t2=__2
|
|
|
|
(cd $d && find . -name '*.[chys]' -o -name '*.cpp' |
|
|
xargs egrep -l '#include.*db_config.h') > $t1
|
|
|
|
:> $t2
|
|
for i in `cat $t1`; do
|
|
egrep -w 'db_config.h|const' /dev/null $d/$i | head -1 >> $t2
|
|
done
|
|
|
|
if egrep const $t2 > /dev/null; then
|
|
echo 'FAIL: found const before include of db_config.h'
|
|
egrep const $t2
|
|
exit 1
|
|
fi
|
|
|
|
:> $t2
|
|
for i in `cat $t1`; do
|
|
egrep -w '#include' /dev/null $d/$i | head -1 >> $t2
|
|
done
|
|
|
|
if egrep -v db_config.h $t2 > /dev/null; then
|
|
echo 'FAIL: found includes before include of db_config.h'
|
|
egrep -v db_config.h $t2
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|