public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
From: Carlos O'Donell <carlos@redhat.com>
To: kevinb@redhat.com,
	"gdb-patches@sourceware.org" <gdb-patches@sourceware.org>
Subject: Re: [PATCH 3/4] print-symbol-loading.exp: Allow libc symbols to be already loaded
Date: Fri, 11 Jun 2021 12:35:44 -0400	[thread overview]
Message-ID: <bea81bcf-79a6-8640-fcfc-59bceb1b7d6d@redhat.com> (raw)

> One consequence of changing libpthread_name_p() in solib.c to (also)
> match libc is that the symbols for libc will now be loaded by
> solib_add() in solib.c.  I think this is mostly harmless because
> we'll likely want these symbols to be loaded anyway, but it did cause
> two failures in gdb.base/print-symbol-loading.exp.

Correct, we will want these symbols loaded, so I think this goes in the
correct direction.

Tested on x86_64 Fedora Rawhide with new glibc.

Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@redhat.com>
 
> Specifically...
> 
> 1)
> 
> sharedlibrary .*
> (gdb) PASS: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
> 
> now looks like this:
> 
> sharedlibrary .*
> Symbols already loaded for /lib64/libc.so.6
> (gdb) PASS: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
> 
> 2)
> 
> sharedlibrary .*
> Loading symbols for shared libraries: .*
> (gdb) PASS: gdb.base/print-symbol-loading.exp: shlib brief: load shared-lib
> 
> now looks like this:
> 
> sharedlibrary .*
> Loading symbols for shared libraries: .*
> Symbols already loaded for /lib64/libc.so.6
> (gdb) PASS: gdb.base/print-symbol-loading.exp: shlib brief: load shared-lib
> 
> Fixing case #2 ended up being easier than #1.  #1 had been using
> gdb_test_no_output to correctly match this no-output case.  I
> ended up replacing it with gdb_test_multiple, matching the exact
> expected output for each of the two now acceptable cases.

I think the use gdb_test_multiple is a good solution here.

> 
> For case #2, I simply added an optional non-capturing group
> for the potential new output.
> 
> gdb/testsuite/ChangeLog:
> 
> 	* gdb.base/print-symbol-loading.exp (proc test_load_shlib):
> 	Allow "Symbols already loaded for..." messages.
> ---
>  gdb/testsuite/gdb.base/print-symbol-loading.exp | 15 ++++++++++++---
>  1 file changed, 12 insertions(+), 3 deletions(-)
> 
> diff --git a/gdb/testsuite/gdb.base/print-symbol-loading.exp b/gdb/testsuite/gdb.base/print-symbol-loading.exp
> index b8eb1c844bd..6e176de351e 100644
> --- a/gdb/testsuite/gdb.base/print-symbol-loading.exp
> +++ b/gdb/testsuite/gdb.base/print-symbol-loading.exp
> @@ -96,6 +96,7 @@ test_load_core full
>  
>  proc test_load_shlib { print_symbol_loading } {
>      global binfile
> +    global gdb_prompt

OK.

>      with_test_prefix "shlib ${print_symbol_loading}" {
>  	clean_restart ${binfile}
>  	gdb_test_no_output "set auto-solib-add off"
> @@ -106,12 +107,20 @@ proc test_load_shlib { print_symbol_loading } {
>  	set test_name "load shared-lib"
>  	switch ${print_symbol_loading} {
>  	    "off" {
> -		gdb_test_no_output "sharedlibrary .*" \
> -		    ${test_name}
> +		set cmd "sharedlibrary .*"
> +		set cmd_regex [string_to_regexp $cmd]
> +		gdb_test_multiple $cmd $test_name {
> +        	    -re "^$cmd_regex\r\n$gdb_prompt $" {
> +			pass $test_name
> +		    }

OK.

> +        	    -re "^$cmd_regex\r\nSymbols already loaded for.*?\\/libc\\..*?\r\n$gdb_prompt $" {
> +			pass $test_name
> +		    }

OK.

> +		}
>  	    }
>  	    "brief" {
>  		gdb_test "sharedlibrary .*" \
> -		    "Loading symbols for shared libraries: \\.\\*" \
> +		    "Loading symbols for shared libraries: \\.\\*.*?(?:Symbols already loaded for .*?libc)?" \

OK.

>  		    ${test_name}
>  	    }
>  	    "full" {
> -- 
> 2.31.1

-- 
Cheers,
Carlos.


             reply	other threads:[~2021-06-11 16:35 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-06-11 16:35 Carlos O'Donell [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-06-10 17:26 [PATCH 0/4] libthread_db initialization changes related to upcoming glibc-2.34 Kevin Buettner
2021-06-10 17:26 ` [PATCH 3/4] print-symbol-loading.exp: Allow libc symbols to be already loaded Kevin Buettner
2021-06-11 19:22   ` Simon Marchi
2021-06-11 19:33     ` Kevin Buettner
2021-06-11 21:05       ` Kevin Buettner

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=bea81bcf-79a6-8640-fcfc-59bceb1b7d6d@redhat.com \
    --to=carlos@redhat.com \
    --cc=gdb-patches@sourceware.org \
    --cc=kevinb@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).