diff options
author | Etienne Samson <samson.etienne@gmail.com> | 2018-10-23 22:34:45 +0200 |
---|---|---|
committer | Etienne Samson <samson.etienne@gmail.com> | 2018-10-23 22:34:45 +0200 |
commit | fa274f7f08cc66e9180bc8169b00e2813bfb73d7 (patch) | |
tree | 29421c0099e00d97d902866aecc61bfcb0788f4c /ci/test.sh | |
parent | 7c791f3dfcc00b892bcea9a1df63b36737d6eb1a (diff) | |
download | libgit2-fa274f7f08cc66e9180bc8169b00e2813bfb73d7.tar.gz |
ci: redirect the malloc debugging output to /dev/null
Diffstat (limited to 'ci/test.sh')
-rwxr-xr-x | ci/test.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test.sh b/ci/test.sh index e50e6fa9e..b64b396da 100755 --- a/ci/test.sh +++ b/ci/test.sh @@ -14,7 +14,7 @@ USER=${USER:-$(whoami)} SUCCESS=1 VALGRIND="valgrind --leak-check=full --show-reachable=yes --error-exitcode=125 --num-callers=50 --suppressions=\"$SOURCE_DIR/libgit2_clar.supp\"" -LEAKS="MallocStackLogging=1 MallocScribble=1 leaks -quiet -atExit -- nohup" +LEAKS="MallocStackLogging=1 MallocScribble=1 MallocLogFile=/dev/null leaks -quiet -atExit -- nohup" cleanup() { echo "Cleaning up..." |