summaryrefslogtreecommitdiff
path: root/run/short-tests
diff options
context:
space:
mode:
Diffstat (limited to 'run/short-tests')
-rwxr-xr-xrun/short-tests11
1 files changed, 0 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
-