blob: 6c292549536355c59556757faf075fff4f24521a (
plain)
1
2
3
4
5
6
7
8
9
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
|