aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/gdb.base/exprs.exp
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2014-07-11 18:46:33 +0800
committerYao Qi <yao@codesourcery.com>2014-07-11 19:05:50 +0800
commit5401fde353cbd1d5d32a3fcc7721b1a29147b5ba (patch)
tree40318f9bf3500e9cd29fa524fcc8a278c17a0c98 /gdb/testsuite/gdb.base/exprs.exp
parente76126e8d1fc8e244fbfce03bda4a41a7b7722b1 (diff)
downloadgdb-5401fde353cbd1d5d32a3fcc7721b1a29147b5ba.zip
gdb-5401fde353cbd1d5d32a3fcc7721b1a29147b5ba.tar.gz
gdb-5401fde353cbd1d5d32a3fcc7721b1a29147b5ba.tar.bz2
Don't print symbol on address 0x0
We see the following fails on arm-none-eabi target, print (void*)v_signed_char^M $190 = (void *) 0x0 <_ftext>^M (gdb) FAIL: gdb.base/exprs.exp: print (void*)v_signed_char (print (void*)v_signed_char) GDB behaves correctly but the test assumes there is no symbol on address 0x0. This patch is set print symbol off, so that tests below can match the address only. gdb/testsuite: 2014-07-11 Yao Qi <yao@codesourcery.com> * gdb.base/exprs.exp: "set print symbol off".
Diffstat (limited to 'gdb/testsuite/gdb.base/exprs.exp')
-rw-r--r--gdb/testsuite/gdb.base/exprs.exp4
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/testsuite/gdb.base/exprs.exp b/gdb/testsuite/gdb.base/exprs.exp
index ebce24f..cccc2fd 100644
--- a/gdb/testsuite/gdb.base/exprs.exp
+++ b/gdb/testsuite/gdb.base/exprs.exp
@@ -200,7 +200,9 @@ test_expr "set variable v_unsigned_long=~0" "print v_unsigned_long > 0" "\\$\[0-
# Test expressions with casts to a pointer.
# NB: Some architectures convert a ``NULL'' pointer into
# something else. Don't simply test for 0.
-#
+# Prevent symbol on address 0x0 being printed.
+gdb_test_no_output "set print symbol off"
+
test_expr "set variable v_signed_char = 0" "print (void*)v_signed_char" "\\$\[0-9\]* = .void \\*. $hex" "print (void*)v_signed_char"
test_expr "set variable v_signed_short = 0" "print (void*)v_signed_short" "\\$\[0-9\]* = .void \\*. $hex" "print (void*)v_signed_short"
test_expr "set variable v_signed_int = 0" "print (void*)v_signed_int" "\\$\[0-9\]* = .void \\*. $hex" "print (void*)v_signed_int"