]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
[gdb/testsuite] Minor cleanup in gdb.base/bg-execution-repeat.exp
authorTom de Vries <tdevries@suse.de>
Wed, 26 Jun 2024 07:05:09 +0000 (09:05 +0200)
committerTom de Vries <tdevries@suse.de>
Wed, 26 Jun 2024 07:05:09 +0000 (09:05 +0200)
Simplify a gdb_test_multiple in test-case gdb.base/bg-execution-repeat.exp
using "gdb_test -no-prompt-anchor".

Suggested-By: Guinevere Larsen <blarsen@redhat.com>
Tested on x86_64-linux.

gdb/testsuite/gdb.base/bg-execution-repeat.exp

index 35ddb34cd8f330c8b9f0b7ae74ef850a2f469b2f..61f26f30f468b41627ca66f5639c70881e4f9661 100644 (file)
@@ -41,14 +41,9 @@ proc test {continue_cmd} {
 
     gdb_breakpoint "$linenum"
 
-    set test $continue_cmd
-    gdb_test_multiple $test $test {
-       -re "Continuing\\.\r\n$gdb_prompt " {
-           # Note no end anchor.  If the breakpoint triggers soon enough
-           # enough we see further output after the prompt.
-           pass $test
-       }
-    }
+    # If the breakpoint triggers soon enough we see further output after the
+    # prompt, so no prompt anchor.
+    gdb_test -no-prompt-anchor $continue_cmd [string_to_regexp "Continuing."]
 
     # Wait for the stop.  Don't expect a prompt, as we had resumed the
     # inferior in the background.