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:
Mehdi Amini 2021-10-03 01:25:10 +00:00
parent cb2e0eb68e
commit 86f5028898
1 changed files with 5 additions and 0 deletions

View File

@ -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')