From 8e87c896e2b69b8f1125518d40710b10b177fb67 Mon Sep 17 00:00:00 2001 From: Augie Fackler Date: Wed, 10 Oct 2018 10:03:23 -0400 Subject: [PATCH] mercurial: disable msan, hopefully only for a while (#1865) Our new fuzzer requires CPython, and I'm getting extremely confusing (and implausible-looking based on reading of CPython source) msan issues, so let's disable msan for this project for now. --- projects/mercurial/project.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/projects/mercurial/project.yaml b/projects/mercurial/project.yaml index 4481a8b26..ed0e521fe 100644 --- a/projects/mercurial/project.yaml +++ b/projects/mercurial/project.yaml @@ -7,5 +7,7 @@ auto_ccs: - "martinvonz@google.com" sanitizers: - address - - memory - undefined + # TODO: re-enable memory when we figure out how to work with cpython + # and msan at the same time. + # - memory