diff options
author | Tom de Vries <tdevries@suse.de> | 2022-11-11 15:52:10 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2022-11-11 15:52:10 +0100 |
commit | ac42aa228f3f1ebda16ddb53b993d6341dbbf100 (patch) | |
tree | 21bfff295d68d817a1fe5c817b3fefd61be3dd91 /gdb/testsuite/lib | |
parent | 4f04dba96d4783bae62e7fe4a5eace9fc414723d (diff) | |
download | gdb-ac42aa228f3f1ebda16ddb53b993d6341dbbf100.zip gdb-ac42aa228f3f1ebda16ddb53b993d6341dbbf100.tar.gz gdb-ac42aa228f3f1ebda16ddb53b993d6341dbbf100.tar.bz2 |
[gdb/testsuite] Don't timeout on prompt in gdb_start_cmd
We're currently running into a timeout at:
...
(gdb) start ^M
Error in expression, near `1'.^M
(gdb) UNTESTED: gdb.ada/start.exp: start failed to land inside the right \
procedure
...
due to the fact that gdb_start_cmd doesn't handle a prompt as reaction to
the start command.
Fix this by handling the prompt. Reduces execution time of the test-case from
1m1s to 1s.
Tested on x86_64-linux.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r-- | gdb/testsuite/lib/gdb.exp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index d70b641..1240c2e 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -548,6 +548,7 @@ proc gdb_start_cmd { {inferior_args {}} } { -notransfer -re "Starting program: \[^\r\n\]*" { return 0 } + -re "$gdb_prompt $" { } } return -1 } |