mirror of
https://github.com/libgit2/libgit2.git
synced 2026-06-22 06:26:26 +00:00
14 lines
332 B
Bash
Executable File
14 lines
332 B
Bash
Executable File
#!/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 --suppressions=./libgit2_clar.supp _build/libgit2_clar $@ -ionline -xbuf::oom
|
|
fi
|