diff options
Diffstat (limited to 'run/long-tests')
| -rwxr-xr-x | run/long-tests | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/run/long-tests b/run/long-tests new file mode 100755 index 000000000..6c2925495 --- /dev/null +++ b/run/long-tests @@ -0,0 +1,10 @@ +#!/bin/bash + +export LD_LIBRARY_PATH=build/src/lib:$LD_LIBRARY_PATH +if [ "$1" == "--debug" ]; then + gdb --args build/test/long-unit-tests +elif [ "$1" == "--valgrind" ]; then + valgrind --tool="memcheck" --leak-check=full build/test/long-unit-tests +else + build/test/long-unit-tests +fi |
