Don't print symbol on address 0x0
authorYao Qi <yao@codesourcery.com>
Fri, 11 Jul 2014 10:46:33 +0000 (18:46 +0800)
committerYao Qi <yao@codesourcery.com>
Fri, 11 Jul 2014 11:05:50 +0000 (19:05 +0800)
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".

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.base/exprs.exp

index 3ae3754ef3f0ff89fe052dc5599c35d18bd45687..74f7bce11e5e575a3d69fc6f1e91a5be8c0ea54e 100644 (file)
@@ -1,3 +1,7 @@
+2014-07-11  Yao Qi  <yao@codesourcery.com>
+
+       * gdb.base/exprs.exp: "set print symbol off".
+
 2014-07-11  Pedro Alves  <palves@redhat.com>
 
        * gdb.threads/kill.c: New file.
index ebce24fefa1a73e9cea923ebacd72795c8e75d79..cccc2fdfaff516ec1f8fcbe23a3e3dc22b5e7434 100644 (file)
@@ -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"