aboutsummaryrefslogtreecommitdiff
path: root/gdb
diff options
context:
space:
mode:
authorJan Kratochvil <jan.kratochvil@redhat.com>2010-06-02 22:20:12 +0000
committerJan Kratochvil <jan.kratochvil@redhat.com>2010-06-02 22:20:12 +0000
commitb8e8282fd63edcf7fb976b8e7c84b59c3d4d69aa (patch)
tree7c808d3a74868ed5c0c229543b864f785ccf716f /gdb
parente68d8fd43423c372e663ab2023a663753f1fa583 (diff)
downloadgdb-b8e8282fd63edcf7fb976b8e7c84b59c3d4d69aa.zip
gdb-b8e8282fd63edcf7fb976b8e7c84b59c3d4d69aa.tar.gz
gdb-b8e8282fd63edcf7fb976b8e7c84b59c3d4d69aa.tar.bz2
gdb/testsuite/
* gdb.cp/ref-types.exp (pass, pass, pass): Rename to ... (print value of rUC, print value of rI, print value of UI): ... here.
Diffstat (limited to 'gdb')
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.cp/ref-types.exp6
2 files changed, 8 insertions, 3 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index 89d1347..b7937bb 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,3 +1,8 @@
+2010-06-02 Jan Kratochvil <jan.kratochvil@redhat.com>
+
+ * gdb.cp/ref-types.exp (pass, pass, pass): Rename to ...
+ (print value of rUC, print value of rI, print value of UI): ... here.
+
2010-06-02 Michael Snyder <msnyder@vmware.com>
* gdb.trace/actions.exp: Use gdb_test_no_output.
diff --git a/gdb/testsuite/gdb.cp/ref-types.exp b/gdb/testsuite/gdb.cp/ref-types.exp
index a28541d..d603e13 100644
--- a/gdb/testsuite/gdb.cp/ref-types.exp
+++ b/gdb/testsuite/gdb.cp/ref-types.exp
@@ -231,7 +231,7 @@ gdb_test "print rC" ".\[0-9\]* = \\(char &\\) @$hex: 65 \'A\'" \
gdb_test "print rUC" \
".\[0-9\]* = \\(unsigned char &\\) @$hex: 21 \'.025\'" \
- pass "print value of rUC"
+ "print value of rUC"
gdb_test_multiple "print rS" "print value of rS" {
-re ".\[0-9\]* = \\(short &\\) @$hex: -14.*$gdb_prompt $" {
@@ -252,11 +252,11 @@ gdb_test_multiple "print rUS" "print value of rUS" {
}
gdb_test "print rI" ".\[0-9\]* = \\(int &\\) @$hex: 102" \
- pass "print value of rI"
+ "print value of rI"
gdb_test "print rUI" \
".\[0-9\]* = \\(unsigned int &\\) @$hex: 1002" \
- pass "print value of UI"
+ "print value of UI"
gdb_test_multiple "print rL" "print value of rL" {
-re ".\[0-9\]* = \\(long &\\) @$hex: -234.*$gdb_prompt $" {