[Lldb-commits] [lldb] 43e45f0 - [lldb] Wait in TestGuiBasicDebug for the interface to open before quitting the welcome screen

Raphael Isemann via lldb-commits lldb-commits at lists.llvm.org
Tue Jul 27 04:59:42 PDT 2021


Author: Raphael Isemann
Date: 2021-07-27T13:58:49+02:00
New Revision: 43e45f0ec920b45d6073c0aff47597c44948f52c

URL: https://github.com/llvm/llvm-project/commit/43e45f0ec920b45d6073c0aff47597c44948f52c
DIFF: https://github.com/llvm/llvm-project/commit/43e45f0ec920b45d6073c0aff47597c44948f52c.diff

LOG: [lldb] Wait in TestGuiBasicDebug for the interface to open before quitting the welcome screen

Speculative fix for the failing lldb-aarch64-ubuntu bot.

Added: 
    

Modified: 
    lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py

Removed: 
    


################################################################################
diff  --git a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py
index 9deb700da39c6..beff76e9374f2 100644
--- a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py
+++ b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py
@@ -26,6 +26,7 @@ def test_gui(self):
 
         # Start the GUI and close the welcome window.
         self.child.sendline("gui")
+        self.child.expect("Welcome to the LLDB curses GUI.")
         self.child.send(escape_key)
 
         # Simulate a simple debugging session.


        


More information about the lldb-commits mailing list