From: Andrew Burgess Date: Tue, 31 May 2022 08:21:20 +0000 (+0100) Subject: gdb/testsuite: resolve duplicate test name in gdb.trace/signal.exp X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=42745ac5821471e8b953d24730c82c3cefa72d67;p=binutils-gdb.git gdb/testsuite: resolve duplicate test name in gdb.trace/signal.exp Spotted a duplicate test name in gdb.trace/signal.exp, resolved in this commit by making use of 'with_test_prefix'. --- diff --git a/gdb/testsuite/gdb.trace/signal.exp b/gdb/testsuite/gdb.trace/signal.exp index 782abeb69d3..da9f0603a5b 100644 --- a/gdb/testsuite/gdb.trace/signal.exp +++ b/gdb/testsuite/gdb.trace/signal.exp @@ -125,7 +125,9 @@ delete_breakpoints gdb_breakpoint "start" qualified gdb_continue_to_breakpoint "continue to start" -gdb_assert { 0 == [get_integer_valueof "counter" "1"] } "counter is zero" +with_test_prefix "counter is zero" { + gdb_assert { 0 == [get_integer_valueof "counter" "1"] } "assert check" +} delete_breakpoints @@ -147,8 +149,10 @@ gdb_test_no_output "tstop" set iterations [get_integer_valueof "iterations" "0"] -gdb_assert { $iterations == [get_integer_valueof "counter" "0"] } \ - "iterations equals to counter" +with_test_prefix "iterations equals to counter" { + gdb_assert { $iterations == [get_integer_valueof "counter" "0"] } \ + "assert check" +} # Record the hit times of each tracepoint in this array. array set tracepoint_hits { }