- Maintenance script qa.sh:

* Add PR31648 KFAIL.
  * Handle yama ptrace_scope == 1.

OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=381
This commit is contained in:
2024-04-18 08:23:24 +00:00
committed by Git OBS Bridge
parent 9a26e73894
commit 5a54e3fd0b
2 changed files with 29 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Apr 18 08:21:00 UTC 2024 - Tom de Vries <tdevries@suse.com>
- Maintenance script qa.sh:
* Add PR31648 KFAIL.
* Handle yama ptrace_scope == 1.
-------------------------------------------------------------------
Wed Apr 10 08:22:47 UTC 2024 - Tom de Vries <tdevries@suse.com>

22
qa.sh
View File

@@ -443,6 +443,16 @@ kfail_sle11=(
kfail_factory=(
# yama ptrace_scope == 1
# https://sourceware.org/pipermail/gdb-patches/2024-April/208251.html
"FAIL: .*attach.*"
"FAIL: .*detach.*"
"FAIL: gdb.base/gcore-excessive-memory.exp: verify we can get to main"
"FAIL: gdb.base/gcore-excessive-memory.exp: verify we can get to main"
"FAIL: gdb.base/gcore-excessive-memory.exp: Save the core file"
"FAIL: gdb.base/gcorebg.exp: Core file generated by standard gcore"
"FAIL: gdb.threads/check-libthread-db.exp: automated load-time check: libpthread.so fully initialized: check debug libthread-db output \(pattern 1\)"
# https://sourceware.org/pipermail/gdb-patches/2021-October/182449.html
"FAIL: gdb.threads/current-lwp-dead.exp: continue to breakpoint: fn_return"
@@ -744,6 +754,18 @@ case $n in
# https://sourceware.org/bugzilla/show_bug.cgi?id=31001
"UNRESOLVED: gdb.threads/async.exp: thread 1: current thread is 1"
# https://sourceware.org/bugzilla/show_bug.cgi?id=31648
"UNRESOLVED: gdb.ada/tick_length_array_enum_idx.exp: print vars'length"
# yama ptrace_scope == 1
# https://sourceware.org/pipermail/gdb-patches/2024-April/208251.html
"Factory.*UNRESOLVED: gdb.base/gstack.exp: spawn gstack"
"Factory.*UNRESOLVED: gdb.multi/multi-term-settings.exp: inf1_how=run: inf2_how=attach: inf2: flush inferior output"
"Factory.*UNRESOLVED: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: inf1: flush inferior output"
"Factory.*UNRESOLVED: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=attach: inf2: flush inferior output"
"Factory.*UNRESOLVED: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: continue"
"Factory.*UNRESOLVED: gdb.multi/multi-term-settings.exp: inf1_how=attach: inf2_how=run: continue"
)
kfail_re=$(join "|" "${kfail[@]}")