[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tests: fix maintainer-check-valgrind make recipe
From: |
Akim Demaille |
Subject: |
Re: tests: fix maintainer-check-valgrind make recipe |
Date: |
Fri, 7 Sep 2018 06:48:40 +0200 |
I don’t see this on the mailing list… Why???
> Le 6 sept. 2018 à 21:30, Akim Demaille <address@hidden> a écrit :
>
> Bug introduced in 32ea6125e32103c7f3f78d20723056801c752acc.
>
> commit cf31256f9a4fc906b3e195703e4c98aa2411635a
> Author: Akim Demaille <address@hidden>
> Date: Thu Sep 6 14:15:40 2018 +0200
>
> tests: fix maintainer-check-valgrind make recipe
>
> * tests/local.mk (maintainer-check-valgrind): Run the with Valgrind
> when it's available, not the converse.
>
> diff --git a/tests/local.mk b/tests/local.mk
> index 46f63b65..da674df7 100644
> --- a/tests/local.mk
> +++ b/tests/local.mk
> @@ -112,7 +112,7 @@ maintainer-check-posix: $(RUN_TESTSUITE_deps)
> VALGRIND_OPTS = --leak-check=full --show-reachable=yes --gen-suppressions=all
> \
> $(VALGRIND_OPTS_SUPPRESSION)
> maintainer-check-valgrind: $(RUN_TESTSUITE_deps)
> - test 'x$(VALGRIND)' != x || \
> + test 'x$(VALGRIND)' == x || \
> $(RUN_TESTSUITE) \
> PREBISON='$(VALGRIND) -q' PREPARSER='$(VALGRIND) -q' \
> VALGRIND_OPTS="$(VALGRIND_OPTS)"
>
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- Re: tests: fix maintainer-check-valgrind make recipe,
Akim Demaille <=