gdb: ensure test_name is initialized in gdb_breakpoint
authorLancelot SIX <lancelot.six@amd.com>
Wed, 4 Jan 2023 17:58:08 +0000 (17:58 +0000)
committerLancelot SIX <lancelot.six@amd.com>
Wed, 4 Jan 2023 19:08:24 +0000 (19:08 +0000)
A refactoring in 4b9728bec15 (gdb: use gdb_test_multiple in
gdb_breakpoint) left the $test_name variable undefined.

This patch fixes this.

Approved-By: Simon Marchi <simon.marchi@efficios.com>
gdb/testsuite/lib/gdb.exp

index ba16b2ab315984cf83defafd0836805ddd79c5f0..e17eace4cb13197071e47b72bc943c2fee1213cd 100644 (file)
@@ -639,8 +639,9 @@ proc gdb_breakpoint { linespec args } {
        set print_pass 1
     }
 
+    set test_name "gdb_breakpoint: set breakpoint at $linespec"
     # The first two regexps are what we get with -g, the third is without -g.
-    gdb_test_multiple "$break_command $linespec" "gdb_breakpoint: set breakpoint at $linespec" {
+    gdb_test_multiple "$break_command $linespec" $test_name {
        -re "$break_message \[0-9\]* at .*: file .*, line $decimal.\r\n$gdb_prompt $" {}
        -re "$break_message \[0-9\]*: file .*, line $decimal.\r\n$gdb_prompt $" {}
        -re "$break_message \[0-9\]* at .*$gdb_prompt $" {}