* [PATCH] gdb/testsuite: skip gdb.threads/omp-par-scope.exp with clang
@ 2024-11-25 18:42 Guinevere Larsen
2024-11-27 18:14 ` Kevin Buettner
0 siblings, 1 reply; 3+ messages in thread
From: Guinevere Larsen @ 2024-11-25 18:42 UTC (permalink / raw)
To: gdb-patches; +Cc: Guinevere Larsen
Since 2020 it has been reported to clang[1] that the debug information
around OpenMP is insufficient. The OpenMP section is not declared
within the correct scope, and instead clang marks as if the section was
a function in the global scope. This causes several failures in the
test gdb.threads/omp-par-scope.exp when using clang to test GDB.
Since this isn't a true failure of GDB, and there is little expectation
that clang will be able to fix this soon, this commit disables the
aforementioned test when clang is being used.
[1] https://github.com/llvm/llvm-project/issues/44236
---
gdb/testsuite/gdb.threads/omp-par-scope.exp | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gdb/testsuite/gdb.threads/omp-par-scope.exp b/gdb/testsuite/gdb.threads/omp-par-scope.exp
index 38c462c421f..6d68afd404a 100644
--- a/gdb/testsuite/gdb.threads/omp-par-scope.exp
+++ b/gdb/testsuite/gdb.threads/omp-par-scope.exp
@@ -20,6 +20,14 @@
standard_testfile
+if { [test_compiler_info "clang*"] } {
+ # Clang doesn't add OpenMP information in the correct scope,
+ # so all relevant tests here will fail. See here for more info:
+ # https://github.com/llvm/llvm-project/issues/44236
+ unsupported "Clang doesn't add required info for the test"
+ return
+}
+
set have_nested_function_support 0
set opts {openmp debug}
if [support_nested_function_tests] {
--
2.47.0
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] gdb/testsuite: skip gdb.threads/omp-par-scope.exp with clang
2024-11-25 18:42 [PATCH] gdb/testsuite: skip gdb.threads/omp-par-scope.exp with clang Guinevere Larsen
@ 2024-11-27 18:14 ` Kevin Buettner
2024-11-27 18:50 ` Guinevere Larsen
0 siblings, 1 reply; 3+ messages in thread
From: Kevin Buettner @ 2024-11-27 18:14 UTC (permalink / raw)
To: Guinevere Larsen; +Cc: gdb-patches
On Mon, 25 Nov 2024 15:42:25 -0300
Guinevere Larsen <guinevere@redhat.com> wrote:
> Since 2020 it has been reported to clang[1] that the debug information
> around OpenMP is insufficient. The OpenMP section is not declared
> within the correct scope, and instead clang marks as if the section was
> a function in the global scope. This causes several failures in the
> test gdb.threads/omp-par-scope.exp when using clang to test GDB.
>
> Since this isn't a true failure of GDB, and there is little expectation
> that clang will be able to fix this soon, this commit disables the
> aforementioned test when clang is being used.
>
> [1] https://github.com/llvm/llvm-project/issues/44236
I thought at first that it might make sense to XFAIL the problematic
tests. But after running it for myself, I see that clang has so many
problems that I now agree that it makes sense to disable the test
entirely (for clang).
One nit though...
> +if { [test_compiler_info "clang*"] } {
> + # Clang doesn't add OpenMP information in the correct scope,
> + # so all relevant tests here will fail. See here for more info:
> + # https://github.com/llvm/llvm-project/issues/44236
> + unsupported "Clang doesn't add required info for the test"
Could you change the message to:
"Clang doesn't provided the required debuginfo for this test"
?
> + return
> +}
> +
With that nit fixed...
Approved-by: Kevin Buettner <kevinb@redhat.com>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] gdb/testsuite: skip gdb.threads/omp-par-scope.exp with clang
2024-11-27 18:14 ` Kevin Buettner
@ 2024-11-27 18:50 ` Guinevere Larsen
0 siblings, 0 replies; 3+ messages in thread
From: Guinevere Larsen @ 2024-11-27 18:50 UTC (permalink / raw)
To: Kevin Buettner; +Cc: gdb-patches
On 11/27/24 3:14 PM, Kevin Buettner wrote:
> On Mon, 25 Nov 2024 15:42:25 -0300
> Guinevere Larsen <guinevere@redhat.com> wrote:
>
>> Since 2020 it has been reported to clang[1] that the debug information
>> around OpenMP is insufficient. The OpenMP section is not declared
>> within the correct scope, and instead clang marks as if the section was
>> a function in the global scope. This causes several failures in the
>> test gdb.threads/omp-par-scope.exp when using clang to test GDB.
>>
>> Since this isn't a true failure of GDB, and there is little expectation
>> that clang will be able to fix this soon, this commit disables the
>> aforementioned test when clang is being used.
>>
>> [1] https://github.com/llvm/llvm-project/issues/44236
> I thought at first that it might make sense to XFAIL the problematic
> tests. But after running it for myself, I see that clang has so many
> problems that I now agree that it makes sense to disable the test
> entirely (for clang).
>
> One nit though...
>
>> +if { [test_compiler_info "clang*"] } {
>> + # Clang doesn't add OpenMP information in the correct scope,
>> + # so all relevant tests here will fail. See here for more info:
>> + # https://github.com/llvm/llvm-project/issues/44236
>> + unsupported "Clang doesn't add required info for the test"
> Could you change the message to:
>
> "Clang doesn't provided the required debuginfo for this test"
>
> ?
>
>> + return
>> +}
>> +
> With that nit fixed...
>
> Approved-by: Kevin Buettner <kevinb@redhat.com>
>
pushed with the nit fixed! Thanks for the quick review
--
Cheers,
Guinevere Larsen
She/Her/Hers
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-11-27 18:51 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-25 18:42 [PATCH] gdb/testsuite: skip gdb.threads/omp-par-scope.exp with clang Guinevere Larsen
2024-11-27 18:14 ` Kevin Buettner
2024-11-27 18:50 ` Guinevere Larsen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox