summaryrefslogtreecommitdiff
path: root/run
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-08-26 22:12:16 +0100
committerCarl Hetherington <cth@carlh.net>2015-08-26 22:12:16 +0100
commit1ad291db7e847fbb71e5bd9f2f81db6bfb2a022e (patch)
tree08a2c0e17e063b1680985c0df8d5472da670fa45 /run
parent6b62e9c77b2a45fd1d7084626f2bb2949e832e5f (diff)
Separate ExceptionStore.
Diffstat (limited to 'run')
-rwxr-xr-xrun/tests4
1 files changed, 3 insertions, 1 deletions
diff --git a/run/tests b/run/tests
index c561cfa99..49bc63142 100755
--- a/run/tests
+++ b/run/tests
@@ -10,10 +10,12 @@ if [ "$1" == "--debug" ]; then
elif [ "$1" == "--valgrind" ]; then
shift;
valgrind --tool="memcheck" --leak-check=full build/test/unit-tests $*
+elif [ "$1" == "--callgrind" ]; then
+ shift;
+ valgrind --tool="callgrind" build/test/unit-tests $*
elif [ "$1" == "--quiet" ]; then
shift;
build/test/unit-tests --catch_system_errors=no $*
else
build/test/unit-tests --catch_system_errors=no --log_level=test_suite $*
fi
-