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]

gdb and binutils branch master updated. 775e0f048171cae1cbe0d8bfb230204142e06834


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gdb and binutils".

The branch, master has been updated
       via  775e0f048171cae1cbe0d8bfb230204142e06834 (commit)
      from  783cecc8b3b4aeb00b901cdc0883f93839ac222b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=775e0f048171cae1cbe0d8bfb230204142e06834

commit 775e0f048171cae1cbe0d8bfb230204142e06834
Author: Yao Qi <yao@codesourcery.com>
Date:   Thu Aug 14 10:51:10 2014 +0800

    Set print symbol off in some tests
    
    GDB in default prints the symbol associated on an address, and tests
    assume that there is no symbol on address zero.  However, on bare
    metal target, address may be mapped to zero and there may be a
    symbol.  Then, some tests fail as below:
    
    print const_cast<void *> (0)^M
    $8 = (void *) 0x0 <_ftext>^M
    (gdb) FAIL: gdb.cp/casts.exp: const_cast of 0
    
    p acp->c1^M
    $9 = (A *) 0x0 <_ftext>^M
    (gdb) FAIL: gdb.cp/class2.exp: p acp->c1
    
    This patch is to set print symbol off in these tests, like what
    I did previously https://sourceware.org/ml/gdb-patches/2014-07/msg00257.html
    
    gdb/testsuite:
    
    2014-08-15  Yao Qi  <yao@codesourcery.com>
    
    	* gdb.cp/casts.exp: Set print symbol off.
    	* gdb.cp/class2.exp: Likewise.
    	* gdb.cp/overload.exp: Likewise.
    	* gdb.cp/templates.exp: Likewise.

-----------------------------------------------------------------------

Summary of changes:
 gdb/testsuite/ChangeLog            |    7 +++++++
 gdb/testsuite/gdb.cp/casts.exp     |    3 +++
 gdb/testsuite/gdb.cp/class2.exp    |    3 ++-
 gdb/testsuite/gdb.cp/overload.exp  |    3 +++
 gdb/testsuite/gdb.cp/templates.exp |    2 ++
 5 files changed, 17 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
gdb and binutils


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