forked from OSchip/llvm-project
Consider ASan messages interesting for creduce
Helped me reduce llvm.org/pr48582
This commit is contained in:
parent
121cac01e8
commit
6f69f2ed61
|
@ -134,7 +134,8 @@ class Reduce(object):
|
|||
r"UNREACHABLE executed at .+?!",
|
||||
r"LLVM IR generation of declaration '.+'",
|
||||
r"Generating code for declaration '.+'",
|
||||
r"\*\*\* Bad machine code: .+ \*\*\*"]
|
||||
r"\*\*\* Bad machine code: .+ \*\*\*",
|
||||
r"ERROR: .*Sanitizer: [^ ]+ "]
|
||||
for msg_re in regexes:
|
||||
match = re.search(msg_re, crash_output)
|
||||
if match:
|
||||
|
|
Loading…
Reference in New Issue