summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2012-07-21 03:46:49 +0100
committerCarl Hetherington <cth@carlh.net>2012-07-21 03:46:49 +0100
commit7183198c4db92a634245ff91ccd49f4bed875b73 (patch)
treeb9c56c62a741e6cb3c488d7d2ecba20e20490c74 /run
parent138aada1a50c6b6e17864f705ce9f18bcd647808 (diff)
Remove long tests in favour of full test corpus.
Diffstat (limited to 'run')
-rwxr-xr-xrun/short-tests11
-rwxr-xr-xrun/tests11
2 files changed, 11 insertions, 11 deletions
diff --git a/run/short-tests b/run/short-tests
deleted file mode 100755
index 4f2567029..000000000
--- a/run/short-tests
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH
-if [ "$1" == "--debug" ]; then
- gdb --args build/test/short-unit-tests
-elif [ "$1" == "--valgrind" ]; then
- valgrind --tool="memcheck" --leak-check=full build/test/short-unit-tests
-else
- build/test/short-unit-tests
-fi
-
diff --git a/run/tests b/run/tests
new file mode 100755
index 000000000..e1686a55c
--- /dev/null
+++ b/run/tests
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH
+if [ "$1" == "--debug" ]; then
+ gdb --args build/test/unit-tests
+elif [ "$1" == "--valgrind" ]; then
+ valgrind --tool="memcheck" --leak-check=full build/test/unit-tests
+else
+ build/test/unit-tests
+fi
+