From dc5dab268c5a39f4df5159b62d24a24a6e9fa988 Mon Sep 17 00:00:00 2001 From: Laria Carolin Chabowski Date: Fri, 1 May 2020 15:15:12 +0200 Subject: tests: Make it easier to run a single test --- tests/run_all.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 tests/run_all.sh (limited to 'tests/run_all.sh') 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 -- cgit v1.2.3-54-g00ecf