diff options
author | Tom de Vries <tdevries@suse.de> | 2023-04-25 08:33:57 +0200 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2023-04-25 08:33:57 +0200 |
commit | 9d00d9eac6020be1be09adcc14deb72ddac485fe (patch) | |
tree | 8d57d211c960a6bc1659f033d0d09c26330beb1f /gdb/testsuite | |
parent | d8d3edbfa3870c984d3ef74fbaf312d938e3df09 (diff) | |
download | gdb-9d00d9eac6020be1be09adcc14deb72ddac485fe.zip gdb-9d00d9eac6020be1be09adcc14deb72ddac485fe.tar.gz gdb-9d00d9eac6020be1be09adcc14deb72ddac485fe.tar.bz2 |
[gdb/testsuite] Fix timeout in gdb.tui/completion.exp
With test-case gdb.tui/completion.exp, we run into:
...
WARNING: timeout in accept_gdb_output
PASS: gdb.tui/completion.exp: check focus completions
...
The timeout happens in this command:
...
Term::command "layout src"
...
which waits for:
- "(gdb) layout src", and then
- "(gdb) ".
Because the "layout src" command enables the TUI there's just a prompt.
Fix this by using Term::command_no_prompt_prefix.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/testsuite')
-rw-r--r-- | gdb/testsuite/gdb.tui/completion.exp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.tui/completion.exp b/gdb/testsuite/gdb.tui/completion.exp index 85abd4a..9cf8dc2 100644 --- a/gdb/testsuite/gdb.tui/completion.exp +++ b/gdb/testsuite/gdb.tui/completion.exp @@ -66,7 +66,7 @@ if {![Term::prepare_for_tui]} { return } -Term::command "layout src" +Term::command_no_prompt_prefix "layout src" Term::command "complete focus " Term::dump_screen Term::check_region_contents "check focus completions" 0 17 80 5 \ |