[Lldb-commits] [lldb] 0904f92 - Skip (more) PExpect tests under ASAN, I can't get them to work reliably.

Adrian Prantl via lldb-commits lldb-commits at lists.llvm.org
Fri Oct 18 17:29:23 PDT 2019


Author: Adrian Prantl
Date: 2019-10-19T00:30:30Z
New Revision: 0904f924012db8002eec3a0533e310c1e714cca4
    
URL: https://github.com/llvm/llvm-project/commit/0904f924012db8002eec3a0533e310c1e714cca4
DIFF: https://github.com/llvm/llvm-project/commit/0904f924012db8002eec3a0533e310c1e714cca4.diff
    
LOG: Skip (more) PExpect tests under ASAN, I can't get them to work reliably.

llvm-svn: 375312
    
Added: 
    
    
Modified: 
    lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
    
Removed: 
    
    
    
################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py b/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
index d202887902e9..b48585146374 100644
--- a/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
+++ b/lldb/packages/Python/lldbsuite/test/iohandler/completion/TestIOHandlerCompletion.py
@@ -13,6 +13,9 @@ class IOHandlerCompletionTest(PExpectTest):
 
     mydir = TestBase.compute_mydir(__file__)
 
+    # PExpect uses many timeouts internally and doesn't play well
+    # under ASAN on a loaded machine..
+    @skipIfAsan
     def test_completion(self):
         self.launch(dimensions=(100,500))
 

    
        


More information about the lldb-commits mailing list