Disable leak check for the MLIR Sparse CPU integration tests (NFC)
authorMehdi Amini <joker.eph@gmail.com>
Sun, 3 Oct 2021 03:33:22 +0000 (03:33 +0000)
committerMehdi Amini <joker.eph@gmail.com>
Sun, 3 Oct 2021 03:35:31 +0000 (03:35 +0000)
See http://llvm.org/pr52046 for tracking.

mlir/test/Integration/Dialect/SparseTensor/CPU/lit.local.cfg

index 83247d7..7ac5190 100644 (file)
@@ -3,3 +3,6 @@ import sys
 # No JIT on win32.
 if sys.platform == 'win32':
     config.unsupported = True
+
+# http://llvm.org/pr52046
+config.environment['ASAN_OPTIONS'] = 'detect_leaks=0'