diff options
author | deva <deva> | 2010-01-18 08:39:22 +0000 |
---|---|---|
committer | deva <deva> | 2010-01-18 08:39:22 +0000 |
commit | 26c4f370344ae35029d123b83ff3c53dda8e1947 (patch) | |
tree | da184685ec91180d1deeef8045c303912938a924 /tools/testlist | |
parent | 255ec69ab86ebaf05d26c35f5270dc99c42ab400 (diff) |
Backported testscript changes from Pentominos
Diffstat (limited to 'tools/testlist')
-rwxr-xr-x | tools/testlist | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testlist b/tools/testlist index fca9d95..a4e7202 100755 --- a/tools/testlist +++ b/tools/testlist @@ -1,5 +1,7 @@ #!/bin/bash +SCRIPTDIR=`dirname $0` + grep "TEST_BEGIN" *.cc > tmp echo -n "TESTFILES=" @@ -22,7 +24,7 @@ do CFLAGS=`cat $FILE | grep "cflags:" | cut -d':' -f2` TEST=test_$NAME echo "$TEST: $FILE $DEPS" - echo -e "\t@../../tools/test $FILE $DEPS $CFLAGS $LIBS" + echo -e "\t@${SCRIPTDIR}/test $FILE $DEPS $CFLAGS $LIBS" echo "" done < tmp |