summaryrefslogtreecommitdiff
path: root/tests/run_all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run_all.sh')
-rwxr-xr-xtests/run_all.sh21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/run_all.sh b/tests/run_all.sh
deleted file mode 100755
index 5727afb..0000000
--- a/tests/run_all.sh
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-r=0
-for t in test_*; do
- cd $t
- php ../test.php > have
- echo -ne "\e[1m$t\e[0m: "
- if sed 's/\s*//' < have | grep -v '^$' | cmp -s want; then
- echo "OK"
- rm *.transc.php
- else
- echo "FAILED"
- for tpl in *.tpl; do
- php ../dump_ast.php < $tpl > $tpl.ast
- done
- r=1
- fi
- cd ..
-done
-
-exit $r