diff options
author | Raphael Isemann <teemperor@gmail.com> | 2021-07-27 13:58:48 +0200 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2021-07-27 13:58:49 +0200 |
commit | 43e45f0ec920b45d6073c0aff47597c44948f52c (patch) | |
tree | da3fcfbbead864e856c3e3cc08888182b3d263dd | |
parent | 23eced9ead21c4282cc68c1e93016ad4433a12d6 (diff) | |
download | llvm-43e45f0ec920b45d6073c0aff47597c44948f52c.zip llvm-43e45f0ec920b45d6073c0aff47597c44948f52c.tar.gz llvm-43e45f0ec920b45d6073c0aff47597c44948f52c.tar.bz2 |
[lldb] Wait in TestGuiBasicDebug for the interface to open before quitting the welcome screen
Speculative fix for the failing lldb-aarch64-ubuntu bot.
-rw-r--r-- | lldb/test/API/commands/gui/basicdebug/TestGuiBasicDebug.py | 1 |
1 files changed, 1 insertions, 0 deletions
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. |