aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.python
diff options
context:
space:
mode:
authorPaul Pluzhnikov <ppluzhnikov@google.com>2009-11-13 17:17:57 +0000
committerPaul Pluzhnikov <ppluzhnikov@google.com>2009-11-13 17:17:57 +0000
commit269f82e5eb0aa5d5b4c1accc858f95b62bc16df4 (patch)
tree51c192932bc6432548ab562b654ad7d144357f59 /gdb/testsuite/gdb.python
parentfd6d6815538394e49c70d2df8fd65ebddb05ffbe (diff)
downloadgdb-269f82e5eb0aa5d5b4c1accc858f95b62bc16df4.zip
gdb-269f82e5eb0aa5d5b4c1accc858f95b62bc16df4.tar.gz
gdb-269f82e5eb0aa5d5b4c1accc858f95b62bc16df4.tar.bz2
gdb/ChangeLog:
2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com> * python/py-prettyprint.c (print_string_repr): Suppress address printing testsuite/ChangeLog: 2009-11-13 Paul Pluzhnikov <ppluzhnikov@google.com> * gdb.python/py-prettyprint.exp: Adjust.
Diffstat (limited to 'gdb/testsuite/gdb.python')
-rw-r--r--gdb/testsuite/gdb.python/py-prettyprint.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/gdb/testsuite/gdb.python/py-prettyprint.exp b/gdb/testsuite/gdb.python/py-prettyprint.exp
index 14119f0..f8cf36d 100644
--- a/gdb/testsuite/gdb.python/py-prettyprint.exp
+++ b/gdb/testsuite/gdb.python/py-prettyprint.exp
@@ -99,10 +99,10 @@ proc run_lang_tests {lang} {
gdb_py_test_silent_cmd "set print elements 200" "" 1
}
- gdb_test "print x" " = $hex \"this is x\""
- gdb_test "print cstring" " = $hex \"const string\""
+ gdb_test "print x" " = \"this is x\""
+ gdb_test "print cstring" " = \"const string\""
- gdb_test "print c" " = container $hex \"container\" with 2 elements = {$nl *.0. = 23,$nl *.1. = 72$nl}"
+ gdb_test "print c" " = container \"container\" with 2 elements = {$nl *.0. = 23,$nl *.1. = 72$nl}"
gdb_test "continue" "Program exited normally\."