public inbox for gdb-prs@sourceware.org
help / color / mirror / Atom feed
* [Bug testsuite/29919] New: [gdb/testsuite] FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
@ 2022-12-20  8:49 vries at gcc dot gnu.org
  2022-12-31  6:36 ` [Bug testsuite/29919] " cvs-commit at gcc dot gnu.org
  2022-12-31  6:38 ` vries at gcc dot gnu.org
  0 siblings, 2 replies; 3+ messages in thread
From: vries at gcc dot gnu.org @ 2022-12-20  8:49 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=29919

            Bug ID: 29919
           Summary: [gdb/testsuite] FAIL:
                    gdb.base/print-symbol-loading.exp: shlib off: load
                    shared-lib
           Product: gdb
           Version: HEAD
            Status: NEW
          Severity: normal
          Priority: P2
         Component: testsuite
          Assignee: unassigned at sourceware dot org
          Reporter: vries at gcc dot gnu.org
  Target Milestone: ---

On ubuntu 22.04.1 x86_64, I run into:
...
(gdb) PASS: gdb.base/print-symbol-loading.exp: shlib off: set print
symbol-loading off
sharedlibrary .*^M
Symbols already loaded for /lib/x86_64-linux-gnu/libc.so.6^M
Symbols already loaded for /lib/x86_64-linux-gnu/libpthread.so.0^M
(gdb) FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
...

The problem is that the libpthread line is not matched.

This is with glibc 2.35.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug testsuite/29919] [gdb/testsuite] FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
  2022-12-20  8:49 [Bug testsuite/29919] New: [gdb/testsuite] FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib vries at gcc dot gnu.org
@ 2022-12-31  6:36 ` cvs-commit at gcc dot gnu.org
  2022-12-31  6:38 ` vries at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: cvs-commit at gcc dot gnu.org @ 2022-12-31  6:36 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=29919

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
The master branch has been updated by Tom de Vries <vries@sourceware.org>:

https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=38ef8cc8e80fe7dc33152af1f85e7530e66f51b8

commit 38ef8cc8e80fe7dc33152af1f85e7530e66f51b8
Author: Tom de Vries <tdevries@suse.de>
Date:   Sat Dec 31 07:35:56 2022 +0100

    [gdb/testsuite] Fix gdb.base/print-symbol-loading.exp on ubuntu 22.04.1

    On ubuntu 22.04.1 x86_64, I run into:
    ...
    (gdb) PASS: gdb.base/print-symbol-loading.exp: shlib off: \
      set print symbol-loading off
    sharedlibrary .*^M
    Symbols already loaded for /lib/x86_64-linux-gnu/libc.so.6^M
    Symbols already loaded for /lib/x86_64-linux-gnu/libpthread.so.0^M
    (gdb) FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
    ...

    The test-case expects the libc.so line, but not the libpthread.so line.

    However, we have:
    ...
    $ ldd /lib/x86_64-linux-gnu/libc.so.6
            linux-vdso.so.1 (0x00007ffd7f7e7000)
            libgtk3-nocsd.so.0 => /lib/x86_64-linux-gnu/libgtk3-nocsd.so.0
(0x00007f4468c00000)
            /lib64/ld-linux-x86-64.so.2 (0x00007f4469193000)
            libdl.so.2 => /lib/x86_64-linux-gnu/libdl.so.2 (0x00007f4468f3e000)
            libpthread.so.0 => /lib/x86_64-linux-gnu/libpthread.so.0
(0x00007f4468f39000)
    ...
    so it's not unexpected that libpthread.so is loaded if libc.so is loaded.

    Fix this by accepting the libpthread.so line.

    Tested on x86_64-linux.

    PR testsuite/29919
    Bug: https://sourceware.org/bugzilla/show_bug.cgi?id=29919

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Bug testsuite/29919] [gdb/testsuite] FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
  2022-12-20  8:49 [Bug testsuite/29919] New: [gdb/testsuite] FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib vries at gcc dot gnu.org
  2022-12-31  6:36 ` [Bug testsuite/29919] " cvs-commit at gcc dot gnu.org
@ 2022-12-31  6:38 ` vries at gcc dot gnu.org
  1 sibling, 0 replies; 3+ messages in thread
From: vries at gcc dot gnu.org @ 2022-12-31  6:38 UTC (permalink / raw)
  To: gdb-prs

https://sourceware.org/bugzilla/show_bug.cgi?id=29919

Tom de Vries <vries at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
   Target Milestone|---                         |14.1
             Status|NEW                         |RESOLVED

--- Comment #2 from Tom de Vries <vries at gcc dot gnu.org> ---
Fixed by commit.

-- 
You are receiving this mail because:
You are on the CC list for the bug.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2022-12-31  6:38 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-20  8:49 [Bug testsuite/29919] New: [gdb/testsuite] FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib vries at gcc dot gnu.org
2022-12-31  6:36 ` [Bug testsuite/29919] " cvs-commit at gcc dot gnu.org
2022-12-31  6:38 ` vries at gcc dot gnu.org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).