0c8de5b03c
Among all the modifications, this new byacc also solves a 14 year old bug [1] PR: bin/23254 [1] Submitted by: marka@nominum.com [1] MFC after: 3 weeks
29 lines
509 B
Bash
Executable File
29 lines
509 B
Bash
Executable File
#!/bin/sh
|
|
# $Id: run_lint.sh,v 1.3 2014/03/28 23:40:27 tom Exp $
|
|
# vi:ts=4 sw=4:
|
|
|
|
# run lint on each of the ".c" files in the test directory
|
|
|
|
if test $# = 1
|
|
then
|
|
PROG_DIR=`pwd`
|
|
TEST_DIR=$1
|
|
else
|
|
PROG_DIR=..
|
|
TEST_DIR=.
|
|
fi
|
|
|
|
ifBTYACC=`fgrep -l 'define YYBTYACC' config.h > /dev/null; test $? != 0; echo $?`
|
|
|
|
if test $ifBTYACC = 0; then
|
|
REF_DIR=${TEST_DIR}/yacc
|
|
else
|
|
REF_DIR=${TEST_DIR}/btyacc
|
|
fi
|
|
|
|
echo '** '`date`
|
|
for i in ${REF_DIR}/*.c
|
|
do
|
|
make -f $PROG_DIR/makefile lint C_FILES=$i srcdir=$PROG_DIR
|
|
done
|