public inbox for gdb-cvs@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb] gdb/testsuite: resolve duplicate test name in gdb.trace/signal.exp
@ 2022-05-31  8:26 Andrew Burgess
  0 siblings, 0 replies; only message in thread
From: Andrew Burgess @ 2022-05-31  8:26 UTC (permalink / raw)
  To: gdb-cvs

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=42745ac5821471e8b953d24730c82c3cefa72d67

commit 42745ac5821471e8b953d24730c82c3cefa72d67
Author: Andrew Burgess <aburgess@redhat.com>
Date:   Tue May 31 09:21:20 2022 +0100

    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:
---
 gdb/testsuite/gdb.trace/signal.exp | 10 +++++++---
 1 file changed, 7 insertions(+), 3 deletions(-)

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 { }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-05-31  8:26 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-31  8:26 [binutils-gdb] gdb/testsuite: resolve duplicate test name in gdb.trace/signal.exp Andrew Burgess

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).