From 43e45f0ec920b45d6073c0aff47597c44948f52c Mon Sep 17 00:00:00 2001 From: Raphael Isemann Date: Tue, 27 Jul 2021 13:58:48 +0200 Subject: [lldb] Wait in TestGuiBasicDebug for the interface to open before quitting the welcome screen Speculative fix for the failing lldb-aarch64-ubuntu bot. --- lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py index 9deb700..beff76e 100644 --- a/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py +++ b/lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py @@ -26,6 +26,7 @@ class TestGuiBasicDebugCommandTest(PExpectTest): # 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. -- cgit v1.1