[Lldb-commits] [lldb] [LLDB] Fix completion of space-only lines in the REPL on Linux (PR #83203)
    Walter Erquinigo via lldb-commits 
    lldb-commits at lists.llvm.org
       
    Wed Feb 28 08:43:37 PST 2024
    
    
  
================
@@ -54,3 +55,16 @@ def test_basic_completion(self):
         self.expect_repl("$persistent + 10", substrs=["(long) $2 = 17"])
 
         self.quit()
+
+    # PExpect uses many timeouts internally and doesn't play well
+    # under ASAN on a loaded machine..
+    @skipIfAsan
+    @skipIf(oslist=["linux"], archs=["arm", "aarch64"])  # Randomly fails on buildbot
----------------
walter-erquinigo wrote:
I actually don't know. The existing test already has issues with basic expr eval, and the new test will have them as well, so I decided to just copy the same configuration.
https://github.com/llvm/llvm-project/pull/83203
    
    
More information about the lldb-commits
mailing list