From 8f9b77aa0ba471b37c4e06aa13d3de6f16f16dc3 Mon Sep 17 00:00:00 2001 From: Mike Hommey Date: Thu, 10 Jun 2021 03:55:46 +0000 Subject: [PATCH] Bug 1715553 - Disable logalloc-replay check on code-coverage builds. r=firefox-build-system-reviewers,nalexander It was already disabled for fuzzed code-coverage in bug 1695331. My guess is that fuzzed code-coverage tripped on the extra allocations due to the code-coverage runtime, but the code-coverage builds didn't trip it because they also triggered an exception, which further triggered a bug in the code with python3 (and somehow the fuzzed ccov builds didn't trigger that). That bug effectively masked the failure. Differential Revision: https://phabricator.services.mozilla.com/D117383 --- memory/replace/logalloc/replay/Makefile.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/memory/replace/logalloc/replay/Makefile.in b/memory/replace/logalloc/replay/Makefile.in index a6d317cc8ba0..73659add98c5 100644 --- a/memory/replace/logalloc/replay/Makefile.in +++ b/memory/replace/logalloc/replay/Makefile.in @@ -2,11 +2,9 @@ # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. -ifdef FUZZING ifdef MOZ_CODE_COVERAGE SKIP = 1 endif -endif ifdef CROSS_COMPILE SKIP = 1