aboutsummaryrefslogtreecommitdiff
path: root/ci/lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2021-10-07 15:28:38 -0700
committerJunio C Hamano <gitster@pobox.com>2021-10-07 15:36:00 -0700
commit25dc57bac8ea77a12a98df75d2f1296dea9d9fa9 (patch)
tree296c0adba407b4e5524e4c21f07dfb8ef41b8432 /ci/lib.sh
parent106298f7f9cca4158a980de149ef217751e1f943 (diff)
parent956d2e4639bfbcac49e7c173f603d24985d7df23 (diff)
downloadgit-25dc57bac8ea77a12a98df75d2f1296dea9d9fa9.tar.xz
Merge branch 'ab/sanitize-leak-ci' into ab/mark-leak-free-tests
* ab/sanitize-leak-ci: tests: add a test mode for SANITIZE=leak, run it in CI Makefile: add SANITIZE=leak flag to GIT-BUILD-OPTIONS
Diffstat (limited to 'ci/lib.sh')
-rwxr-xr-xci/lib.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/ci/lib.sh b/ci/lib.sh
index 476c3f369f..82cb17f8ee 100755
--- a/ci/lib.sh
+++ b/ci/lib.sh
@@ -183,7 +183,7 @@ export GIT_TEST_CLONE_2GB=true
export SKIP_DASHED_BUILT_INS=YesPlease
case "$jobname" in
-linux-clang|linux-gcc)
+linux-clang|linux-gcc|linux-leaks)
if [ "$jobname" = linux-gcc ]
then
export CC=gcc-8
@@ -233,4 +233,11 @@ linux-musl)
;;
esac
+case "$jobname" in
+linux-leaks)
+ export SANITIZE=leak
+ export GIT_TEST_PASSING_SANITIZE_LEAK=true
+ ;;
+esac
+
MAKEFLAGS="$MAKEFLAGS CC=${CC:-cc}"