summaryrefslogtreecommitdiff
path: root/paper/lua-filters/runtests.sh
diff options
context:
space:
mode:
Diffstat (limited to 'paper/lua-filters/runtests.sh')
-rwxr-xr-xpaper/lua-filters/runtests.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/paper/lua-filters/runtests.sh b/paper/lua-filters/runtests.sh
deleted file mode 100755
index bbcbbba..0000000
--- a/paper/lua-filters/runtests.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/bash
-# argument is list of filters
-
-FILTERS=$*
-let err=0
-for d in $FILTERS ; do
- make --no-print-directory -C $d test
- if [ $? -eq 0 ]; then
- echo "PASS $d"
- else
- echo "FAIL $d"
- err=1
- fi
-done
-exit $err
-