- Maintenance script qa.sh:

* Add KFAILs for PR28667.

OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=317
This commit is contained in:
Tom de Vries 2022-02-11 15:17:08 +00:00 committed by Git OBS Bridge
parent 4a28a7ba36
commit 31093b9edb
2 changed files with 12 additions and 0 deletions

View File

@ -1,3 +1,9 @@
-------------------------------------------------------------------
Fri Feb 11 15:15:58 UTC 2022 - Tom de Vries <tdevries@suse.com>
- Maintenance script qa.sh:
* Add KFAILs for PR28667.
------------------------------------------------------------------- -------------------------------------------------------------------
Mon Feb 7 15:15:58 UTC 2022 - Tom de Vries <tdevries@suse.com> Mon Feb 7 15:15:58 UTC 2022 - Tom de Vries <tdevries@suse.com>

6
qa.sh
View File

@ -186,6 +186,9 @@ kfail_factory=(
# https://sourceware.org/bugzilla/show_bug.cgi?id=28510 # https://sourceware.org/bugzilla/show_bug.cgi?id=28510
"FAIL: gdb.debuginfod/fetch_src_and_symbols.exp: local_url: br main" "FAIL: gdb.debuginfod/fetch_src_and_symbols.exp: local_url: br main"
"FAIL: gdb.debuginfod/fetch_src_and_symbols.exp: local_url: l" "FAIL: gdb.debuginfod/fetch_src_and_symbols.exp: local_url: l"
# https://sourceware.org/bugzilla/show_bug.cgi?id=28667
"FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time \\(GDB internal error\\)"
) )
case $n in case $n in
@ -233,6 +236,9 @@ case $n in
"linux-nat.c:[0-9]*: internal-error: wait returned unexpected" "linux-nat.c:[0-9]*: internal-error: wait returned unexpected"
# https://sourceware.org/bugzilla/show_bug.cgi?id=28604 # https://sourceware.org/bugzilla/show_bug.cgi?id=28604
"x86-linux-dregs.c:[0-9]*: internal-error: void x86_linux_update_debug_registers\(lwp_info\*\): Assertion \`lwp_is_stopped \(lwp\)' failed." "x86-linux-dregs.c:[0-9]*: internal-error: void x86_linux_update_debug_registers\(lwp_info\*\): Assertion \`lwp_is_stopped \(lwp\)' failed."
# https://sourceware.org/bugzilla/show_bug.cgi?id=28667
"record-full.c:[0-9]*: internal-error: ptid_t record_full_wait_1\(target_ops\*, ptid_t, target_waitstatus\*, target_wait_flags\): Assertion \`\(options & TARGET_WNOHANG\) != 0' failed."
) )
kfail_re=$(join "|" "${kfail[@]}") kfail_re=$(join "|" "${kfail[@]}")