blob: fc093eb841f8e61d8847dcde5406186a1947d06b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
#!/bin/sh -
#
# $Id$
#
# Check to make sure __mutex_print_id knows about all of the mutex types.
d=../../
[ -d $d/mutex ] || {
echo 'FAIL: cannot find source distribution directory.'
exit 1
}
t1=__1
t2=__2
egrep 'case MTX_.*return' $d/mutex/mut_stat.c |
sed -e 's/.*case //' \
-e 's/:.*//' |
sort > $t1
egrep '#define.MTX_' $d/dbinc/mutex.h |
sed -e 's/#define.//' \
-e 's/ .*//' \
-e '/MTX_MAX_ENTRY/d' |
sort > $t2
cmp $t1 $t2 > /dev/null || {
echo "<<< mutex/mut_stat.c >>> dbinc/mutex.h"
diff $t1 $t2
exit 1
}
exit 0
|