summaryrefslogtreecommitdiff
path: root/tools/testlist
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2013-05-16 19:26:42 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2013-05-16 19:26:42 +0200
commit919586f8d86ceed1f979967a453f4812fc10d80b (patch)
treef2cf0a54b778b64dccdbeb2ef0b90056bbd01211 /tools/testlist
parentbc7d41279222dbd07f8e6f02f067347d10c69f33 (diff)
parent1dcb87f400b36f773942562db901e134d14ef8ed (diff)
Merge branch 'master' of http://git.drumgizmo.org/drumgizmo
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 c42824f..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@${SCRIPTDIR}/test $FILE $DEPS $CFLAGS $LIBS"
- echo ""
-done < tmp
-
-rm -f tmp \ No newline at end of file