Bug 1717448 - Ignore allocations in done within {fmt}. r=sfink

Differential Revision: https://phabricator.services.mozilla.com/D218067
This commit is contained in:
Paul Adenot 2024-10-21 12:54:55 +00:00
parent 06fb4d6f70
commit 889522b90a

View File

@ -182,6 +182,10 @@ def main():
if "_memory_" in filename:
continue
# {fmt} can do transient allocations when formatting strings
if "third_party_fmt" in filename:
continue
# Ignore the fuzzing code imported from m-c
if "Fuzzer" in filename:
continue