diff options
author | Alex Auvolat <alex@adnab.me> | 2016-07-13 22:31:46 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2016-07-13 22:31:46 +0200 |
commit | 360da84db0d7165c84d160b518f39cd16006c758 (patch) | |
tree | a6fea5da753ec4ac5a37237cefda52801f9647ac /src/tests/run_tests.sh | |
parent | 27a6934ea3073c3eaf782cc7615ce4ed0dbf4a18 (diff) | |
download | kogata-360da84db0d7165c84d160b518f39cd16006c758.tar.gz kogata-360da84db0d7165c84d160b518f39cd16006c758.zip |
Migrate to BAM build tool
Diffstat (limited to 'src/tests/run_tests.sh')
-rwxr-xr-x | src/tests/run_tests.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/tests/run_tests.sh b/src/tests/run_tests.sh deleted file mode 100755 index 470959b..0000000 --- a/src/tests/run_tests.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/bash - -cd `dirname $0` - -for FILE in */Makefile */*/Makefile; do - TEST=`dirname $FILE` - echo -n "Running test $TEST ... " - if make -C $TEST run_test > $TEST/test.log 2>&1; then - echo -e "\033[0;32mOK\033[0m" - else - echo -e "\033[0;31mFAIL\033[0m" - fi -done |