- Maintenance script qa.sh:

* Re-enable PR26284 kfails.
  * Remove mention of PR28275.
  * Add PR29897 kfail.
- Mention CVE-2018-7208 and CVE-2017-16829.

OBS-URL: https://build.opensuse.org/package/show/devel:gcc/gdb?expand=0&rev=346
This commit is contained in:
2022-12-14 14:55:05 +00:00
committed by Git OBS Bridge
parent 8ccc1500ca
commit 054020c7be
2 changed files with 19 additions and 4 deletions

10
qa.sh
View File

@@ -178,9 +178,8 @@ kfail=(
"FAIL: gdb.base/info-os.exp: continue \(timeout\)"
# https://sourceware.org/bugzilla/show_bug.cgi?id=26284
# https://sourceware.org/bugzilla/show_bug.cgi?id=28275
# https://sourceware.org/bugzilla/show_bug.cgi?id=28343
#"FAIL: gdb.threads/detach-step-over.exp: .*internal error"
"FAIL: gdb.threads/detach-step-over.exp: .*internal error"
# https://sourceware.org/bugzilla/show_bug.cgi?id=26363
"FAIL: gdb.xml/tdesc-reload.exp: .*internal error"
@@ -524,6 +523,9 @@ kfail_powerpc64le=(
# Commit 8b272d7671f ("[gdb/testsuite] Fix gdb.guile/scm-symtab.exp for
# ppc64le").
"FAIL: gdb.guile/scm-symtab.exp: test find-pc-line with resume address"
# https://sourceware.org/bugzilla/show_bug.cgi?id=29897
"FAIL: gdb.base/run-control-while-bg-execution.exp: action1=none: action2=start: start \(GDB internal error\)"
)
kfail_powerpc64le_sle12=(
@@ -591,6 +593,7 @@ case $n in
kfail+=("${kfail_factory[@]}")
kfail+=("${kfail_sle12[@]}")
kfail+=("${kfail_s390[@]}")
kfail+=("${kfail_powerpc64le[@]}")
kfail_re=$(join "|" "${kfail[@]}")
grep "^FAIL:.*internal error" binaries-testsuite*/gdb-testresults/*.sum \
| grep -E -v "$kfail_re"
@@ -640,6 +643,9 @@ case $n in
# https://sourceware.org/bugzilla/show_bug.cgi?id=29841
"regcache.c:[0-9]*: internal-error: raw_read: Assertion \`buf != NULL' failed."
# https://sourceware.org/bugzilla/show_bug.cgi?id=29897
"displaced-stepping.c:[0-9]*: internal-error: prepare: Assertion \`buf.current_thread != thread' failed."
)
kfail_re=$(join "|" "${kfail[@]}")