summaryrefslogtreecommitdiff
path: root/tests/run_all.sh
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-10-23 00:01:49 +0200
committerKevin Chabowski <kevin@kch42.de>2013-10-23 00:01:49 +0200
commitfc8f7eec23e8e95fc9a4a483bb69a1ee6866069d (patch)
treed7b9510e21e1c188894d821682327f5bfb9e225e /tests/run_all.sh
parent04ee002e30b5451d505ee5abd9c6b97c40da2df0 (diff)
downloadste-fc8f7eec23e8e95fc9a4a483bb69a1ee6866069d.tar.gz
ste-fc8f7eec23e8e95fc9a4a483bb69a1ee6866069d.tar.bz2
ste-fc8f7eec23e8e95fc9a4a483bb69a1ee6866069d.zip
Added some tests
Diffstat (limited to 'tests/run_all.sh')
-rwxr-xr-xtests/run_all.sh21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/run_all.sh b/tests/run_all.sh
new file mode 100755
index 0000000..75909d1
--- /dev/null
+++ b/tests/run_all.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+
+r=0
+for t in test_*; do
+ cd $t
+ php ../test.php > have
+ echo -n "$t: "
+ if cmp want have; 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 \ No newline at end of file