forked from OSchip/llvm-project
Exclude MLIR python binding tests from Sanitizer tests for now
This requires more config to work reliably during lit execution. But also I see many leaks when running manually right now.
This commit is contained in:
parent
cb2e0eb68e
commit
86f5028898
|
@ -1,3 +1,8 @@
|
|||
# Disable with sanitizers for now, this require some more setup apparently.
|
||||
for san in ['asan', 'msan', 'ubsan']:
|
||||
if (san in config.available_features):
|
||||
config.unsupported = True
|
||||
|
||||
if not config.enable_bindings_python:
|
||||
config.unsupported = True
|
||||
config.excludes.add('python_test_ops.td')
|
||||
|
|
Loading…
Reference in New Issue