[Mlir-commits] [mlir] 5de44d2 - Disable leak check for the MLIR Sparse CPU integration tests (NFC)

Mehdi Amini llvmlistbot at llvm.org
Sat Oct 2 20:36:06 PDT 2021


Author: Mehdi Amini
Date: 2021-10-03T03:35:31Z
New Revision: 5de44d25213cf6ea632fb8612b9d6ac5b9b8c6df

URL: https://github.com/llvm/llvm-project/commit/5de44d25213cf6ea632fb8612b9d6ac5b9b8c6df
DIFF: https://github.com/llvm/llvm-project/commit/5de44d25213cf6ea632fb8612b9d6ac5b9b8c6df.diff

LOG: Disable leak check for the MLIR Sparse CPU integration tests (NFC)

See http://llvm.org/pr52046 for tracking.

Added: 
    

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

Removed: 
    


################################################################################
diff  --git a/mlir/test/Integration/Dialect/SparseTensor/CPU/lit.local.cfg b/mlir/test/Integration/Dialect/SparseTensor/CPU/lit.local.cfg
index 83247d7e37449..7ac5190e3b908 100644
--- a/mlir/test/Integration/Dialect/SparseTensor/CPU/lit.local.cfg
+++ b/mlir/test/Integration/Dialect/SparseTensor/CPU/lit.local.cfg
@@ -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'


        


More information about the Mlir-commits mailing list