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. ae1d276159c3cfb29caacdf567aea01f433f78b0


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  ae1d276159c3cfb29caacdf567aea01f433f78b0 (commit)
      from  ebb8ed8e946c7e48f64a3c2577403594c3971230 (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=ae1d276159c3cfb29caacdf567aea01f433f78b0

commit ae1d276159c3cfb29caacdf567aea01f433f78b0
Author: Pierre Muller <muller@sourceware.org>
Date:   Tue Mar 25 08:37:36 2014 +0800

    [testsuite] Disable Ctrl-V use for mingw hosts.
    
    On mingw host, we have seen two fails as below,
    
    p int1dim[0]^V@2
    Invalid character '^V' in expression.
    (gdb) FAIL: gdb.base/printcmds.exp: p int1dim[0]@2
    p int1dim[0]^V@2^V@3
    Invalid character '^V' in expression.
    (gdb) FAIL: gdb.base/printcmds.exp: p int1dim[0]@2@3
    
    In the test, the comment says "# Send \026@ instead of just @ in case
    the kill character is @".  Historically, kill character was @, and
    Ctrl-V (\026) is to escape the next character.  However, we don't have
    to do so on mingw.  This patch is to disable ctrl-v usage on mingw
    hots.  With this patch applied, it becomes:
    
    p int1dim[0]@2
    $607 = {0, 1}
    (gdb) PASS: gdb.base/printcmds.exp: p int1dim[0]@2
    p int1dim[0]@2@3
    $608 = {{0, 1}, {2, 3}, {4, 5}}
    
    Note that this patch is picked from Pierre's submission,
    
      [RFC 6/6] Fix remaining failures in gdb.base/printcmds.exp for mingw hosts.
      https://www.sourceware.org/ml/gdb-patches/2013-09/msg00943.html
    
    gdb/testsuite:
    
    2014-04-08  Pierre Muller  <muller@sourceware.org>
    
    	* gdb.base/printcmds.exp (test_artificial_arrays): Disable
    	Ctrl-V use for mingw hosts.

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

Summary of changes:
 gdb/testsuite/ChangeLog              |    5 +++++
 gdb/testsuite/gdb.base/printcmds.exp |   12 ++++++++++--
 2 files changed, 15 insertions(+), 2 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]