[Lldb-commits] [lldb] 3b8a1cc - [lldb] Disable TestGuiExpandThreadsTree

Augusto Noronha via lldb-commits lldb-commits at lists.llvm.org
Fri Jul 22 16:01:57 PDT 2022


Author: Augusto Noronha
Date: 2022-07-22T16:00:51-07:00
New Revision: 3b8a1cc38ab72afe6889f3c1fff7c3deb8ac26ec

URL: https://github.com/llvm/llvm-project/commit/3b8a1cc38ab72afe6889f3c1fff7c3deb8ac26ec
DIFF: https://github.com/llvm/llvm-project/commit/3b8a1cc38ab72afe6889f3c1fff7c3deb8ac26ec.diff

LOG: [lldb] Disable TestGuiExpandThreadsTree

Added: 
    

Modified: 
    lldb/test/API/commands/gui/expand-threads-tree/TestGuiExpandThreadsTree.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/gui/expand-threads-tree/TestGuiExpandThreadsTree.py b/lldb/test/API/commands/gui/expand-threads-tree/TestGuiExpandThreadsTree.py
index 099bf3bb2ac1a..00a5d2673bfc3 100644
--- a/lldb/test/API/commands/gui/expand-threads-tree/TestGuiExpandThreadsTree.py
+++ b/lldb/test/API/commands/gui/expand-threads-tree/TestGuiExpandThreadsTree.py
@@ -16,39 +16,60 @@ class TestGuiExpandThreadsTree(PExpectTest):
     @skipIfAsan
     @skipIfCursesSupportMissing
     @skipIf(oslist=["linux"], archs=["arm", "aarch64"])
+    @skipIf(bugnumber="rdar://97460266")
     def test_gui(self):
         self.build()
 
+        print(1)
         self.launch(executable=self.getBuildArtifact("a.out"), dimensions=(100,500))
+        print(2)
         self.expect("breakpoint set -n break_here", substrs=["Breakpoint 1", "address ="])
+        print(3)
         self.expect("run", substrs=["stop reason ="])
 
         escape_key = chr(27).encode()
 
         # Start the GUI and close the welcome window.
+        print(4)
         self.child.sendline("gui")
+        print(5)
         self.child.send(escape_key)
+        print(6)
         self.child.expect_exact("Threads")
 
         # The thread running thread_start_routine should be expanded.
+
+        print(7)
         self.child.expect_exact("#0: break_here")
 
         # Exit GUI.
+
+        print(8)
         self.child.send(escape_key)
+        print(9)
         self.expect_prompt()
 
         # Select the main thread.
+        print(10)
         self.child.sendline("thread select 1")
 
         # Start the GUI.
+        print(11)
         self.child.sendline("gui")
+        print(12)
         self.child.expect_exact("Threads")
 
         # The main thread should be expanded.
+
+        print(13)
         self.child.expect("#\d+: main")
 
         # Quit the GUI
+        print(14)
         self.child.send(escape_key)
 
+        print(15)
         self.expect_prompt()
+
+        print(16)
         self.quit()


        


More information about the lldb-commits mailing list