Blob Blame History Raw
#!/bin/sh

EXPECT=4
SINDEX=0
STERM=main
STYPE="find C symbol"

if [ -z "$CSCOPE_BINARY" ]
then
	CSCOPE_BINARY=./src/cscope
fi

echo "Searching item $SINDEX, '$STYPE'"

#Get to the top level directory
cd ..

#Remove any previous databases from testing
rm -f cscope.out

#Count the number of instances of the string 'Copyright'
#We expect 178 currently
COUNT=$($CSCOPE_BINARY -R -L -$SINDEX$STERM | wc -l)

if [ $COUNT -ne $EXPECT ]
then
	echo "Expected $EXPECT instances of $STYPE $STERM but found $COUNT"
	exit 1
fi

exit 0