summaryrefslogtreecommitdiffstats
path: root/contrib/byacc/test/run_lint.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/byacc/test/run_lint.sh')
-rwxr-xr-xcontrib/byacc/test/run_lint.sh20
1 files changed, 20 insertions, 0 deletions
diff --git a/contrib/byacc/test/run_lint.sh b/contrib/byacc/test/run_lint.sh
new file mode 100755
index 0000000..3230551
--- /dev/null
+++ b/contrib/byacc/test/run_lint.sh
@@ -0,0 +1,20 @@
+#!/bin/sh
+# $Id: run_lint.sh,v 1.1 2010/06/08 09:00:58 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
+
+echo '** '`date`
+for i in ${TEST_DIR}/*.c
+do
+ make -f $PROG_DIR/makefile lint C_FILES=$i srcdir=$PROG_DIR
+done
OpenPOWER on IntegriCloud