diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-04-17 22:37:54 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-04-17 22:37:54 +0200 |
| commit | 31c75f3717e4fd88f38a95847bbaf063e761ce96 (patch) | |
| tree | 228b9b00aa0bf1dd578822f76ff33627401595ec | |
| parent | 8902a7adb63e2dac24e877ed1035bf344397c260 (diff) | |
Add drd/helgrind to the tests runner script.
| -rwxr-xr-x | run/tests | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -20,6 +20,12 @@ elif [ "$1" == "--callgrind" ]; then elif [ "$1" == "--quiet" ]; then shift; build/test/unit-tests --catch_system_errors=no $* +elif [ "$1" == "--drd" ]; then + shift; + valgrind --tool="drd" build/test/unit-tests $* +elif [ "$1" == "--helgrind" ]; then + shift; + valgrind --tool="helgrind" build/test/unit-tests $* else ulimit -c unlimited build/test/unit-tests --catch_system_errors=no --log_level=test_suite $* |
