summaryrefslogtreecommitdiff
path: root/tools/testlist
diff options
context:
space:
mode:
authorsenator <elsenator@gmail.com>2011-11-23 15:07:01 +0100
committersenator <elsenator@gmail.com>2011-11-23 15:07:01 +0100
commit9989ea2f6bfa19bd349bbbdec8ec3f56c1427245 (patch)
tree91cab6be068ee7f99accb6e97dda5a7bda5879e0 /tools/testlist
parentc09fb0787c3af4d282ae3fac53c706665a91b0a7 (diff)
parent07244d0376e2e25eaeba913e684bd06122ded893 (diff)
Merge branch 'master' of http://git.aasimon.org/public/pracro
Diffstat (limited to 'tools/testlist')
-rwxr-xr-xtools/testlist31
1 files changed, 0 insertions, 31 deletions
diff --git a/tools/testlist b/tools/testlist
deleted file mode 100755
index 01a48e2..0000000
--- a/tools/testlist
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/bin/bash
-
-SCRIPTDIR=`dirname $0`
-
-grep -l "TEST_BEGIN" *.cc > tmp
-
-echo -n "TESTFILES="
-while read LINE
-do
- FILE=$LINE
- NAME=`echo $FILE | cut -d'.' -f1`
- TEST=test_$NAME
- echo -ne "$TEST "
-done < tmp
-echo ""
-echo ""
-
-while read LINE
-do
- FILE=$LINE
- NAME=`echo $FILE | cut -d'.' -f1`
- DEPS=`cat $FILE | grep "deps:" | cut -d':' -f2`
- LIBS=`cat $FILE | grep "libs:" | cut -d':' -f2`
- CFLAGS=`cat $FILE | grep "cflags:" | cut -d':' -f2`
- TEST=test_$NAME
- echo "$TEST: $FILE $DEPS"
- echo -e "\t@TEST_DEPS=\"$DEPS\" TEST_CFLAGS=\"$CFLAGS\" TEST_LIBS=\"$LIBS\" ${SCRIPTDIR}/test $FILE"
- echo ""
-done < tmp
-
-rm -f tmp \ No newline at end of file