summaryrefslogtreecommitdiff
path: root/server/tools/testlist
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2011-11-17 14:38:54 +0100
committerBent Bisballe Nyeng <deva@aasimon.org>2011-11-17 14:38:54 +0100
commit64610c7453fc6bc0be7d3f9cb49058fb849be725 (patch)
tree0a905e2c3974825e687d12aed1b51900c0217de9 /server/tools/testlist
parent5a7b924ba441ad0fef77d9c312c23f53cdba5fe8 (diff)
Move server-only tools to server tools folder.
Diffstat (limited to 'server/tools/testlist')
-rwxr-xr-xserver/tools/testlist31
1 files changed, 31 insertions, 0 deletions
diff --git a/server/tools/testlist b/server/tools/testlist
new file mode 100755
index 0000000..01a48e2
--- /dev/null
+++ b/server/tools/testlist
@@ -0,0 +1,31 @@
+#!/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