[llvm] 30f4362 - Disable memory leak checking in a test to work around a bot failure

Erik Pilkington via llvm-commits llvm-commits at lists.llvm.org
Wed Feb 26 14:54:15 PST 2020


Author: Erik Pilkington
Date: 2020-02-26T14:51:50-08:00
New Revision: 30f4362040fe28069e96c217856817e9014ab26d

URL: https://github.com/llvm/llvm-project/commit/30f4362040fe28069e96c217856817e9014ab26d
DIFF: https://github.com/llvm/llvm-project/commit/30f4362040fe28069e96c217856817e9014ab26d.diff

LOG: Disable memory leak checking in a test to work around a bot failure

This leak is expected, see the discussion on commit 85fb997

Added: 
    

Modified: 
    llvm/test/ExecutionEngine/OrcLazy/objc-minimal.ll

Removed: 
    


################################################################################
diff  --git a/llvm/test/ExecutionEngine/OrcLazy/objc-minimal.ll b/llvm/test/ExecutionEngine/OrcLazy/objc-minimal.ll
index 8a940573dcb9..06a1224fdb79 100644
--- a/llvm/test/ExecutionEngine/OrcLazy/objc-minimal.ll
+++ b/llvm/test/ExecutionEngine/OrcLazy/objc-minimal.ll
@@ -1,5 +1,5 @@
 ; REQUIRES: system-darwin
-; RUN: lli -jit-kind=orc-lazy %s
+; RUN: env ASAN_OPTIONS=detect_leaks=0 lli -jit-kind=orc-lazy %s
 ;
 ; Sanity check MachO Platform support: Call a no-op method (returning int 0) on
 ; an ObjC object. This test checks that we correctly auto-identify this as a


        


More information about the llvm-commits mailing list