From: Junio C Hamano Date: Tue, 7 Mar 2023 21:45:34 +0000 (-0800) Subject: Meta/round: clean after running leaks and sparse X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db2ba41c72091c3935de9a9e9057644d9a61dec0;p=thirdparty%2Fgit.git Meta/round: clean after running leaks and sparse --- diff --git a/round b/round index 6ba348a839..49330f5172 100755 --- a/round +++ b/round @@ -32,13 +32,16 @@ do ;; leaks) SANITIZE=leak \ - GIT_TEST_PASSING_SANITIZE_LEAK=true Meta/Make -j16 test + GIT_TEST_PASSING_SANITIZE_LEAK=true Meta/Make -j16 test && + SANITIZE=leak \ + GIT_TEST_PASSING_SANITIZE_LEAK=true Meta/Make -j16 clean ;; coccicheck) SPATCH_FLAGS=--recursive-includes Meta/Make -j16 "$t" ;; sparse) - Meta/Make -j16 -- NO_REGEX=NoThanks SPARSE_FLAGS=-Wsparse-error "$t" + Meta/Make -j16 -- NO_REGEX=NoThanks SPARSE_FLAGS=-Wsparse-error "$t" && + Meta/Make -j16 -- NO_REGEX=NoThanks clean >/dev/null 2>&1 ;; *) Meta/Make -j16 "$t"