This is the mail archive of the gdb-cvs@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] gdb.arch/amd64-entry-value-param*.exp: Make sure test messages are unique


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

commit 2e86a2830cfef688a27e17353b84f59f8147ab23
Author: Pedro Alves <palves@redhat.com>
Date:   Wed Mar 8 14:05:41 2017 +0000

    gdb.arch/amd64-entry-value-param*.exp: Make sure test messages are unique
    
    gdb/testsuite/ChangeLog:
    2017-03-08  Pedro Alves  <palves@redhat.com>
    
    	* gdb.arch/amd64-entry-value-param-dwarf5.exp: Use with_test_prefix.
    	* gdb.arch/amd64-entry-value-param.exp: Use with_test_prefix.

Diff:
---
 gdb/testsuite/ChangeLog                            |  5 +++++
 .../gdb.arch/amd64-entry-value-param-dwarf5.exp    | 24 ++++++++++++++--------
 gdb/testsuite/gdb.arch/amd64-entry-value-param.exp | 24 ++++++++++++++--------
 3 files changed, 35 insertions(+), 18 deletions(-)

diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 26135e5..4575e27 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,10 @@
 2017-03-08  Pedro Alves  <palves@redhat.com>
 
+	* gdb.arch/amd64-entry-value-param-dwarf5.exp: Use with_test_prefix.
+	* gdb.arch/amd64-entry-value-param.exp: Use with_test_prefix.
+
+2017-03-08  Pedro Alves  <palves@redhat.com>
+
 	* gdb.arch/i386-pkru.exp (probe PKRU support): Handle detecting
 	PKRU as not supported as a PASS.
 
diff --git a/gdb/testsuite/gdb.arch/amd64-entry-value-param-dwarf5.exp b/gdb/testsuite/gdb.arch/amd64-entry-value-param-dwarf5.exp
index 0357ff4..bbaffd3 100644
--- a/gdb/testsuite/gdb.arch/amd64-entry-value-param-dwarf5.exp
+++ b/gdb/testsuite/gdb.arch/amd64-entry-value-param-dwarf5.exp
@@ -36,14 +36,20 @@ if ![runto_main] {
 set srcfile $srcfile2
 gdb_breakpoint [gdb_get_line_number "break-here"]
 
-gdb_continue_to_breakpoint "break-here" ".* break-here .*"
-gdb_test "p y" " = 2"
-gdb_test "p b" " = 4"
+with_test_prefix "call 1" {
+    gdb_continue_to_breakpoint "break-here" ".* break-here .*"
+    gdb_test "p y" " = 2"
+    gdb_test "p b" " = 4"
+}
 
-gdb_continue_to_breakpoint "break-here" ".* break-here .*"
-gdb_test "p y" " = 4"
-gdb_test "p b" " = 8"
+with_test_prefix "call 2" {
+    gdb_continue_to_breakpoint "break-here" ".* break-here .*"
+    gdb_test "p y" " = 4"
+    gdb_test "p b" " = 8"
+}
 
-gdb_continue_to_breakpoint "break-here" ".* break-here .*"
-gdb_test "p y" " = 10"
-gdb_test "p b" " = 20"
+with_test_prefix "call 3" {
+    gdb_continue_to_breakpoint "break-here" ".* break-here .*"
+    gdb_test "p y" " = 10"
+    gdb_test "p b" " = 20"
+}
diff --git a/gdb/testsuite/gdb.arch/amd64-entry-value-param.exp b/gdb/testsuite/gdb.arch/amd64-entry-value-param.exp
index c0072ac..2ec9c31 100644
--- a/gdb/testsuite/gdb.arch/amd64-entry-value-param.exp
+++ b/gdb/testsuite/gdb.arch/amd64-entry-value-param.exp
@@ -36,14 +36,20 @@ if ![runto_main] {
 set srcfile $srcfile2
 gdb_breakpoint [gdb_get_line_number "break-here"]
 
-gdb_continue_to_breakpoint "break-here" ".* break-here .*"
-gdb_test "p y" " = 2"
-gdb_test "p b" " = 4"
+with_test_prefix "call 1" {
+    gdb_continue_to_breakpoint "break-here" ".* break-here .*"
+    gdb_test "p y" " = 2"
+    gdb_test "p b" " = 4"
+}
 
-gdb_continue_to_breakpoint "break-here" ".* break-here .*"
-gdb_test "p y" " = 4"
-gdb_test "p b" " = 8"
+with_test_prefix "call 2" {
+    gdb_continue_to_breakpoint "break-here" ".* break-here .*"
+    gdb_test "p y" " = 4"
+    gdb_test "p b" " = 8"
+}
 
-gdb_continue_to_breakpoint "break-here" ".* break-here .*"
-gdb_test "p y" " = 10"
-gdb_test "p b" " = 20"
+with_test_prefix "call 3" {
+    gdb_continue_to_breakpoint "break-here" ".* break-here .*"
+    gdb_test "p y" " = 10"
+    gdb_test "p b" " = 20"
+}


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]