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


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  e48744a00a1bddd3366c25e93fee86e97c190e7b (commit)
      from  925bbbbb989a9bef73a13d6085b2674fe8b90048 (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=e48744a00a1bddd3366c25e93fee86e97c190e7b

commit e48744a00a1bddd3366c25e93fee86e97c190e7b
Author: Pedro Alves <palves@redhat.com>
Date:   Wed Nov 20 17:12:37 2013 +0000

    Make the maint.exp:'maint print objfiles' test less fragile.
    
    I was "lucky" enough that an unrelated patch changed how many symtabs
    GDB expands in a plain run to main, and that triggered a latent issue
    in this test:
    
      PASS: gdb.base/maint.exp: maint print objfiles: header
      PASS: gdb.base/maint.exp: maint print objfiles: psymtabs
      FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
    
    The problem is in my case, expect is managing to alway put in the
    buffer chunks like this:
    
    
      Psymtabs:
      ../../../src/gdb/testsuite/gdb.base/break1.c at 0x1ed2280, ../../../src/gdb/testsuite/gdb.base/break.c at 0x1ed21d0,
    
      Symtabs:
      ../../../src/gdb/testsuite/gdb.base/break.c at 0x1f044f0, /usr/include/stdio.h at 0x1ed25a0, /usr/include/libio.h at 0x1ed2510, /usr/include/bits/types.h at 0x1ed2480, /usr/lib/gcc/x86_64-redhat-linux/4.7.2/include/stddef.h at 0x1ed23f0,
    
    
      Object file /usr/lib/debug/lib64/ld-2.15.so.debug:  Objfile at 0x1f4bff0, bfd at 0x1f2d940, 0 minsyms
    
      Psymtabs:
      bsearch.c at 0x1f65340, ../sysdeps/x86_64/multiarch/init-arch.c at
      0x1f65290, ...
    
    Note: Psymtabs:/Symtabs:/Psymtabs:.
    
    So, the loop matches the first Psymtabs in the buffer.  Then we're
    left with
    
    
      ../../../src/gdb/testsuite/gdb.base/break1.c at 0x1ed2280, ../../../src/gdb/testsuite/gdb.base/break.c at 0x1ed21d0,
    
      Symtabs:
      ../../../src/gdb/testsuite/gdb.base/break.c at 0x1f044f0, /usr/include/stdio.h at 0x1ed25a0, /usr/include/libio.h at 0x1ed2510, /usr/include/bits/types.h at 0x1ed2480, /usr/lib/gcc/x86_64-redhat-linux/4.7.2/include/stddef.h at 0x1ed23f0,
    
    
      Object file /usr/lib/debug/lib64/ld-2.15.so.debug:  Objfile at 0x1f4bff0, bfd at 0x1f2d940, 0 minsyms
    
      Psymtabs:
      bsearch.c at 0x1f65340, ../sysdeps/x86_64/multiarch/init-arch.c at
      0x1f65290, ...
    
    In the next iteration, because the psymtabs regex comes first, we
    match with the Psymtabs: line, then of course, end up with just
    
      bsearch.c at 0x1f65340, ../sysdeps/x86_64/multiarch/init-arch.c at
      0x1f65290, ...
    
    in the buffer.  The "Symtabs:" line is lost.  expect then reads more
    gdb output, and manages to again retrieve the same pattern.  Rinse,
    repeat, and the test never matches any "Symtab:" line.
    
    We don't know the order the matches lines will appear, so the fix is
    to consume one line at a time, and run it through all three milestone
    regexes.
    
    gdb/testsuite/
    2013-11-20  Pedro Alves  <palves@redhat.com>
    
    	* gdb.base/maint.exp (maint print objfiles): Consume one line at a
    	time, and run it through all three milestone regexes.

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

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