diff options
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 |