public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* [PATCH][gdb/testsuite] Fix gdb.base/early-init-file.exp with -fsanitize=thread
@ 2022-06-26 13:15 Tom de Vries
  2022-07-02  9:50 ` [committed][gdb/testsuite] " Tom de Vries
  0 siblings, 1 reply; 2+ messages in thread
From: Tom de Vries @ 2022-06-26 13:15 UTC (permalink / raw)
  To: gdb-patches

Hi,

When building gdb with -fsanitize=thread, I run into:
...
FAIL: gdb.base/early-init-file.exp: check startup version string has style \
  version
...
due to this:
...
warning: Found custom handler for signal 7 (Bus error) preinstalled.^M
warning: Found custom handler for signal 8 (Floating point exception) \
  preinstalled.^M
warning: Found custom handler for signal 11 (Segmentation fault) \
  preinstalled.^M
Some signal dispositions inherited from the environment (SIG_DFL/SIG_IGN)^M
won't be propagated to spawned programs.^M
...
appearing before the "GNU gdb (GDB) $version" line.

This is similar to the problem fixed by commit f0bbba7886f
("gdb.debuginfod/fetch_src_and_symbols.exp: fix when GDB is built with
AddressSanitizer").

In that commit, the problem was fixed by starting gdb with -quiet, but using
that would mean the "GNU gdb (GDB) $version" line that we're trying to check
would disappear.

Fix this instead by updating the regexp to allow the message.

Tested on x86_64-linux.

Any comments?

Thanks,
- Tom

[gdb/testsuite] Fix gdb.base/early-init-file.exp with -fsanitize=thread

---
 gdb/testsuite/gdb.base/early-init-file.exp | 19 +++++++++++++++++--
 1 file changed, 17 insertions(+), 2 deletions(-)

diff --git a/gdb/testsuite/gdb.base/early-init-file.exp b/gdb/testsuite/gdb.base/early-init-file.exp
index 1bc6cea13e3..b5aa5583615 100644
--- a/gdb/testsuite/gdb.base/early-init-file.exp
+++ b/gdb/testsuite/gdb.base/early-init-file.exp
@@ -22,9 +22,23 @@ if {[build_executable "failed to build" $testfile $srcfile]} {
     return -1
 }
 
+set custom_signal_handle_re \
+    "warning: Found custom handler for signal $decimal \(\[^\r\n\]+\) preinstalled\."
+set signal_dispositions_re \
+    [multi_line \
+	 "Some signal dispositions inherited from the environment \(\[^\r\n\]+\)" \
+	 "won't be propagated to spawned programs\." ]
+set gdb_sanitizer_msg_re \
+    [multi_line \
+	 "($custom_signal_handle_re" \
+	 ")+$signal_dispositions_re" \
+	 ""]
+
 # Start gdb and ensure that the initial version string is styled in
 # STYLE, use MESSAGE as the name of the test.
 proc check_gdb_startup_version_string { style { message "" } } {
+    global gdb_sanitizer_msg_re
+
     if { $message == "" } {
 	set message "check startup version string has style $style"
     }
@@ -32,7 +46,7 @@ proc check_gdb_startup_version_string { style { message "" } } {
     gdb_exit
     gdb_spawn
     set vers [style "GNU gdb.*" $style]
-    gdb_test "" "^${vers}.*" $message
+    gdb_test "" "^(${gdb_sanitizer_msg_re})?${vers}.*" $message
 }
 
 # Return a list containing two directory paths for newly created home
@@ -70,12 +84,13 @@ proc setup_home_directories { prefix content } {
 # drop straight to the prompt.
 proc check_gdb_startups_up_quietly { message } {
     global gdb_prompt
+    global gdb_sanitizer_msg_re
 
     gdb_exit
     gdb_spawn
 
     gdb_test_multiple "" $message {
-	-re "^$gdb_prompt $" {
+	-re "^(${gdb_sanitizer_msg_re})?$gdb_prompt $" {
 	    pass $gdb_test_name
 	}
     }

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

* [committed][gdb/testsuite] Fix gdb.base/early-init-file.exp with -fsanitize=thread
  2022-06-26 13:15 [PATCH][gdb/testsuite] Fix gdb.base/early-init-file.exp with -fsanitize=thread Tom de Vries
@ 2022-07-02  9:50 ` Tom de Vries
  0 siblings, 0 replies; 2+ messages in thread
From: Tom de Vries @ 2022-07-02  9:50 UTC (permalink / raw)
  To: gdb-patches

On 6/26/22 15:15, Tom de Vries via Gdb-patches wrote:
> Hi,
> 
> When building gdb with -fsanitize=thread, I run into:
> ...
> FAIL: gdb.base/early-init-file.exp: check startup version string has style \
>    version
> ...
> due to this:
> ...
> warning: Found custom handler for signal 7 (Bus error) preinstalled.^M
> warning: Found custom handler for signal 8 (Floating point exception) \
>    preinstalled.^M
> warning: Found custom handler for signal 11 (Segmentation fault) \
>    preinstalled.^M
> Some signal dispositions inherited from the environment (SIG_DFL/SIG_IGN)^M
> won't be propagated to spawned programs.^M
> ...
> appearing before the "GNU gdb (GDB) $version" line.
> 
> This is similar to the problem fixed by commit f0bbba7886f
> ("gdb.debuginfod/fetch_src_and_symbols.exp: fix when GDB is built with
> AddressSanitizer").
> 
> In that commit, the problem was fixed by starting gdb with -quiet, but using
> that would mean the "GNU gdb (GDB) $version" line that we're trying to check
> would disappear.
> 
> Fix this instead by updating the regexp to allow the message.
> 
> Tested on x86_64-linux.
> 
> Any comments?
> 

Committed.

Thanks,
- Tom

> [gdb/testsuite] Fix gdb.base/early-init-file.exp with -fsanitize=thread
> 
> ---
>   gdb/testsuite/gdb.base/early-init-file.exp | 19 +++++++++++++++++--
>   1 file changed, 17 insertions(+), 2 deletions(-)
> 
> diff --git a/gdb/testsuite/gdb.base/early-init-file.exp b/gdb/testsuite/gdb.base/early-init-file.exp
> index 1bc6cea13e3..b5aa5583615 100644
> --- a/gdb/testsuite/gdb.base/early-init-file.exp
> +++ b/gdb/testsuite/gdb.base/early-init-file.exp
> @@ -22,9 +22,23 @@ if {[build_executable "failed to build" $testfile $srcfile]} {
>       return -1
>   }
>   
> +set custom_signal_handle_re \
> +    "warning: Found custom handler for signal $decimal \(\[^\r\n\]+\) preinstalled\."
> +set signal_dispositions_re \
> +    [multi_line \
> +	 "Some signal dispositions inherited from the environment \(\[^\r\n\]+\)" \
> +	 "won't be propagated to spawned programs\." ]
> +set gdb_sanitizer_msg_re \
> +    [multi_line \
> +	 "($custom_signal_handle_re" \
> +	 ")+$signal_dispositions_re" \
> +	 ""]
> +
>   # Start gdb and ensure that the initial version string is styled in
>   # STYLE, use MESSAGE as the name of the test.
>   proc check_gdb_startup_version_string { style { message "" } } {
> +    global gdb_sanitizer_msg_re
> +
>       if { $message == "" } {
>   	set message "check startup version string has style $style"
>       }
> @@ -32,7 +46,7 @@ proc check_gdb_startup_version_string { style { message "" } } {
>       gdb_exit
>       gdb_spawn
>       set vers [style "GNU gdb.*" $style]
> -    gdb_test "" "^${vers}.*" $message
> +    gdb_test "" "^(${gdb_sanitizer_msg_re})?${vers}.*" $message
>   }
>   
>   # Return a list containing two directory paths for newly created home
> @@ -70,12 +84,13 @@ proc setup_home_directories { prefix content } {
>   # drop straight to the prompt.
>   proc check_gdb_startups_up_quietly { message } {
>       global gdb_prompt
> +    global gdb_sanitizer_msg_re
>   
>       gdb_exit
>       gdb_spawn
>   
>       gdb_test_multiple "" $message {
> -	-re "^$gdb_prompt $" {
> +	-re "^(${gdb_sanitizer_msg_re})?$gdb_prompt $" {
>   	    pass $gdb_test_name
>   	}
>       }

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

end of thread, other threads:[~2022-07-02  9:50 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-26 13:15 [PATCH][gdb/testsuite] Fix gdb.base/early-init-file.exp with -fsanitize=thread Tom de Vries
2022-07-02  9:50 ` [committed][gdb/testsuite] " Tom de Vries

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