summaryrefslogtreecommitdiff
path: root/script/cileaks.sh
diff options
context:
space:
mode:
Diffstat (limited to 'script/cileaks.sh')
-rwxr-xr-xscript/cileaks.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/script/cileaks.sh b/script/cileaks.sh
deleted file mode 100755
index 4163613af..000000000
--- a/script/cileaks.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-
-set -x
-
-# If this platform doesn't support test execution, bail out now
-if [ -n "$SKIP_TESTS" ];
-then
- exit $?
-fi
-
-if [ -n "$VALGRIND" -a -e "$(which valgrind)" ]; then
- valgrind --leak-check=full --show-reachable=yes --error-exitcode=125 --num-callers=50 --suppressions=./libgit2_clar.supp _build/libgit2_clar $@ -ionline -xbuf::oom
-elif [ -n "$LEAKS" -a -e "$(which leaks)" ]; then
- MallocStackLogging=1 MallocScribble=1 leaks -atExit -- _build/libgit2_clar -ionline
-fi