From 86f50288989a87e421e2551d8a00d85e993a53a7 Mon Sep 17 00:00:00 2001 From: Mehdi Amini Date: Sun, 3 Oct 2021 01:25:10 +0000 Subject: [PATCH] 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. --- mlir/test/python/lit.local.cfg | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/mlir/test/python/lit.local.cfg b/mlir/test/python/lit.local.cfg index 2e28a4c6..fc4c987 100644 --- a/mlir/test/python/lit.local.cfg +++ b/mlir/test/python/lit.local.cfg @@ -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') -- 2.7.4