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] Harden gdb.base/bp-permanent.exp


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

commit 9e811bc379ef78f0e2beadda9ed3ce6679ded7ea
Author: Luis Machado <lgustavo@codesourcery.com>
Date:   Tue Apr 14 09:22:53 2015 -0300

    Harden gdb.base/bp-permanent.exp
    
    Reinstate test message and replace hardcoded test command with a variable.
    
    gdb/testsuite/ChangeLog:
    2015-04-14  Luis Machado  <lgustavo@codesourcery.com>
    
    	* gdb.base/bp-permanent.exp (test): Reinstate correct test message.

Diff:
---
 gdb/testsuite/ChangeLog                 | 4 ++++
 gdb/testsuite/gdb.base/bp-permanent.exp | 3 ++-
 2 files changed, 6 insertions(+), 1 deletion(-)

diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index a2f7328..c49519f 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,7 @@
+2015-04-14  Luis Machado  <lgustavo@codesourcery.com>
+
+	* gdb.base/bp-permanent.exp (test): Reinstate correct test message.
+
 2015-04-13  Luis Machado  <lgustavo@codesourcery.com>
 
 	* gdb.base/bp-permanent.exp (test): Handle the case of being unable
diff --git a/gdb/testsuite/gdb.base/bp-permanent.exp b/gdb/testsuite/gdb.base/bp-permanent.exp
index e802eee..cbdbc75 100644
--- a/gdb/testsuite/gdb.base/bp-permanent.exp
+++ b/gdb/testsuite/gdb.base/bp-permanent.exp
@@ -104,7 +104,8 @@ proc test {always_inserted sw_watchpoint} {
 	# to memory manually.
 	set count [expr $address_after_bp - $address_bp]
 	for {set i 0} {$i < $count} {incr i} {
-	    gdb_test_multiple "p /x addr_bp\[$i\] = buffer\[$i\]" $test {
+	    set test "p /x addr_bp\[$i\] = buffer\[$i\]"
+	    gdb_test_multiple $test $test {
 		-re "Cannot access memory at address $hex.*$gdb_prompt $" {
 		    # Some targets (QEMU for one) will disallow writes to the
 		    # .text section under certain circumstances.  It is no use


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