public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-Aarch64-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
@ 2020-01-10 11:28 ` gdb-buildbot
2020-01-10 11:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 11:28 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/8/builds/1644
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.threads/stop-with-handle.exp: can't run to main
new UNRESOLVED: gdb.threads/stop-with-handle.exp: delete all breakpoints in delete_breakpoints
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [binutils-gdb] ubsan: alpha-coff: signed integer overflow
@ 2020-01-10 11:28 gdb-buildbot
2020-01-10 11:28 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
` (9 more replies)
0 siblings, 10 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 11:28 UTC (permalink / raw)
To: gdb-testers
*** TEST RESULTS FOR COMMIT 71780f455fbf35ed4c48e94b4228c55c11a213c8 ***
commit 71780f455fbf35ed4c48e94b4228c55c11a213c8
Author: Alan Modra <amodra@gmail.com>
AuthorDate: Thu Jan 9 06:41:25 2020 +1030
Commit: Alan Modra <amodra@gmail.com>
CommitDate: Fri Jan 10 17:32:33 2020 +1030
ubsan: alpha-coff: signed integer overflow
* coff-alpha.c (alpha_ecoff_object_p): Calculate size in bfd_size_type.
diff --git a/bfd/ChangeLog b/bfd/ChangeLog
index aae0832e3d..68b15198b1 100644
--- a/bfd/ChangeLog
+++ b/bfd/ChangeLog
@@ -1,3 +1,7 @@
+2020-01-10 Alan Modra <amodra@gmail.com>
+
+ * coff-alpha.c (alpha_ecoff_object_p): Calculate size in bfd_size_type.
+
2020-01-09 Nick Clifton <nickc@redhat.com>
PR 25221
diff --git a/bfd/coff-alpha.c b/bfd/coff-alpha.c
index 0baac2a24a..4b39bcc999 100644
--- a/bfd/coff-alpha.c
+++ b/bfd/coff-alpha.c
@@ -423,7 +423,7 @@ alpha_ecoff_object_p (bfd *abfd)
{
bfd_size_type size;
- size = sec->line_filepos * 8;
+ size = (bfd_size_type) sec->line_filepos * 8;
BFD_ASSERT (size == sec->size
|| size + 8 == sec->size);
if (!bfd_set_section_size (sec, size))
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
2020-01-10 11:28 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
@ 2020-01-10 11:46 ` gdb-buildbot
2020-01-10 12:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 11:46 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-native-extended-gdbserver-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/5/builds/1635
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> UNRESOLVED: gdb.dwarf2/missing-type-name.exp: ptype of a pointer to a basic type with missing name
PASS -> UNRESOLVED: gdb.threads/attach-into-signal.exp: threaded: attach
new UNRESOLVED: gdb.threads/create-fail.exp: iteration 10: delete all breakpoints in delete_breakpoints
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Ubuntu-Aarch64-native-gdbserver-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
2020-01-10 11:28 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2020-01-10 11:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 12:00 ` gdb-buildbot
2020-01-10 13:50 ` Failures on Fedora-i686, " gdb-buildbot
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 12:00 UTC (permalink / raw)
To: gdb-testers
Buildername:
Ubuntu-Aarch64-native-gdbserver-m64
Worker:
ubuntu-aarch64
Full Build URL:
https://gdb-buildbot.osci.io/#builders/19/builds/1666
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
new UNRESOLVED: gdb.arch/arm-neon.exp: could not run to main
PASS -> UNRESOLVED: gdb.base/bad-file.exp: directory
PASS -> UNRESOLVED: gdb.base/bad-file.exp: neither file nor directory
PASS -> UNRESOLVED: gdb.base/bad-file.exp: non-existent file
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, continue from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, next from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, nothing in handler, step from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: nexti to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: nexti to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, continue from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, next from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, nothing in handler, step from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: break clear done
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, continue from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, next from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: advance in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: continue to signal
new UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: display/i $pc
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: handle SIGVTALRM print pass stop
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: leave handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: si in handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: stepi to handler, si+advance in handler, step from handler: stepi to handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: break handler
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: continue to stepi handler
new UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: delete all breakpoints in delete_breakpoints
PASS -> UNRESOLVED: gdb.base/sigstep.exp: validate backtrace: display/i $pc
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Ubuntu-Aarch64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-i686, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (2 preceding siblings ...)
2020-01-10 12:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 13:50 ` gdb-buildbot
2020-01-10 14:28 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 13:50 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-i686
Worker:
fedora-x86-64-4
Full Build URL:
https://gdb-buildbot.osci.io/#builders/18/builds/1772
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-i686/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-i686/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-i686/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-cc-with-index, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (3 preceding siblings ...)
2020-01-10 13:50 ` Failures on Fedora-i686, " gdb-buildbot
@ 2020-01-10 14:28 ` gdb-buildbot
2020-01-10 14:48 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 14:28 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-cc-with-index
Worker:
fedora-x86-64-2
Full Build URL:
https://gdb-buildbot.osci.io/#builders/20/builds/1717
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.base/options.exp: test-print: cmd complete "thread apply 1 frame apply 1 print -"
PASS -> FAIL: gdb.base/options.exp: test-print: tab complete "thread apply 1 frame apply 1 print -"
PASS -> UNRESOLVED: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: main stop
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-cc-with-index/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m32, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (4 preceding siblings ...)
2020-01-10 14:28 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
@ 2020-01-10 14:48 ` gdb-buildbot
2020-01-10 15:09 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 14:48 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-m32
Worker:
fedora-x86-64-3
Full Build URL:
https://gdb-buildbot.osci.io/#builders/17/builds/1771
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump-DumpExcluded: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dump-excluded.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for DoNotDump: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dont-dump.gcore
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Private-Anonymous: no binary: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-private-anon.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for DoNotDump-DumpExcluded: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/dump-excluded.gcore
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot/fedora-x86-64-3/fedora-x86-64-m32/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m32/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (5 preceding siblings ...)
2020-01-10 14:48 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
@ 2020-01-10 15:09 ` gdb-buildbot
2020-01-10 16:01 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 15:09 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-m64
Worker:
fedora-x86-64-1
Full Build URL:
https://gdb-buildbot.osci.io/#builders/3/builds/1831
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "" "" : second pass: breakpoint foo in first file
PASS -> UNRESOLVED: gdb.base/reread.exp: opts= "-fPIE" "ldflags=-pie" : second pass: breakpoint foo in first file
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print i
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_parallel: inner_threads: 2nd stop: print j
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m32, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (6 preceding siblings ...)
2020-01-10 15:09 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
@ 2020-01-10 16:01 ` gdb-buildbot
2020-01-10 16:08 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-10 16:35 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 16:01 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-gdbserver-m32
Worker:
fedora-x86-64-3
Full Build URL:
https://gdb-buildbot.osci.io/#builders/24/builds/1764
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m32/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (7 preceding siblings ...)
2020-01-10 16:01 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
@ 2020-01-10 16:08 ` gdb-buildbot
2020-01-10 16:35 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 16:08 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-extended-gdbserver-m64
Worker:
fedora-x86-64-2
Full Build URL:
https://gdb-buildbot.osci.io/#builders/2/builds/1769
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.2: frame without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.2: reset selection to thread 1.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.2: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.2: select frame 1 again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.2: select frame 1, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.3: reset selection to thread 1.3
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_frame: thread 1.3: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_inferior: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_inferior: select inferior
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_inferior: select inferior again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_inferior: select inferior again, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_inferior: select inferior, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.2: select thread
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.2: select thread again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.2: select thread, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.2: thread without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.3: select thread
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.3: select thread again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.3: select thread, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=direct: test_cli_in_mi_thread: thread 1.3: thread without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.2: frame without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.2: reset selection to thread 1.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.2: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.2: select frame 1 again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.2: select frame 1, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.3: reset selection to thread 1.3
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_frame: thread 1.3: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_inferior: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_inferior: select inferior
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_inferior: select inferior again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_inferior: select inferior again, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_inferior: select inferior, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.2: select thread
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.2: select thread again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.2: select thread, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.2: thread without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.3: select thread
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.3: select thread again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.3: select thread, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: exec_mode=interpreter-exec: test_cli_in_mi_thread: thread 1.3: thread without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.2: frame without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.2: reset selection to thread 1.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.2: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.2: select frame 1 again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.2: select frame 1, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.3: reset selection to thread 1.3
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_frame: thread 1.3: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_inferior: CLI select inferior
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_inferior: CLI select inferior again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_inferior: event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_inferior: event on MI again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_inferior: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.2: reset selection to thread 1.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.2: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.2: select frame 1 again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.2: select frame 1, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.3: reset selection to thread 1.3
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_select_frame: thread 1.3: select frame 1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.2: select thread
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.2: select thread again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.2: select thread, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.2: thread without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.3: select thread
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.3: select thread again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.3: select thread, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_thread: thread 1.3: thread without args
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_up_down: frame down
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_up_down: frame down, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_up_down: frame up
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_up_down: frame up, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_cli_up_down: reset selection to thread 1.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.2: -stack-select-frame
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.2: -stack-select-frame again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.2: -stack-select-frame, event on MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.2: reset selection to thread 1.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.3: -stack-select-frame
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_stack_select_frame: thread 1.3: reset selection to thread 1.3
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: reset selection to thread 1.1
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2 with --thread: -thread-select
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2: -thread-select
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2: -thread-select again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.2: -thread-select, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.3: -thread-select
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.3: -thread-select again
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_mi_thread_select: thread 1.3: -thread-select, event on CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: inferior 2: continue to breakpoint: main breakpoint
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: inferior 2: set thread-specific breakpoint, thread 2.2
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: inferior 2: stop at breakpoint in main
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: inferior 2: thread 2.2 stops CLI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: inferior 2: thread 2.2 stops MI
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: main stop
UNRESOLVED -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
new FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i02
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i12
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: multi_scope: second thread: print i22
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-extended-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
` (8 preceding siblings ...)
2020-01-10 16:08 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
@ 2020-01-10 16:35 ` gdb-buildbot
9 siblings, 0 replies; 11+ messages in thread
From: gdb-buildbot @ 2020-01-10 16:35 UTC (permalink / raw)
To: gdb-testers
Buildername:
Fedora-x86_64-native-gdbserver-m64
Worker:
fedora-x86-64-1
Full Build URL:
https://gdb-buildbot.osci.io/#builders/22/builds/1767
Author:
Alan Modra <amodra@gmail.com>
Commit tested:
71780f455fbf35ed4c48e94b4228c55c11a213c8
Subject of commit:
ubsan: alpha-coff: signed integer overflow
Testsuite logs (gdb.sum, gdb.log and others):
https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8/
*** Diff to previous build ***
==============================================
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print k
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print r
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: nested_func: 2nd call: 1st thread: print z
PASS -> KFAIL: gdb.threads/omp-par-scope.exp: single_scope: second thread: print i3
==============================================
*** Complete list of XFAILs for this builder ***
To obtain the list of XFAIL tests for this builder, go to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.gz>
You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:
<https://gdb-buildbot.osci.io/results/Fedora-x86_64-native-gdbserver-m64/71/71780f455fbf35ed4c48e94b4228c55c11a213c8//xfail.table.gz>
^ permalink raw reply [flat|nested] 11+ messages in thread
end of thread, other threads:[~2020-01-10 16:35 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-10 11:28 [binutils-gdb] ubsan: alpha-coff: signed integer overflow gdb-buildbot
2020-01-10 11:28 ` Failures on Ubuntu-Aarch64-m64, branch master gdb-buildbot
2020-01-10 11:46 ` Failures on Ubuntu-Aarch64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-10 12:00 ` Failures on Ubuntu-Aarch64-native-gdbserver-m64, " gdb-buildbot
2020-01-10 13:50 ` Failures on Fedora-i686, " gdb-buildbot
2020-01-10 14:28 ` Failures on Fedora-x86_64-cc-with-index, " gdb-buildbot
2020-01-10 14:48 ` Failures on Fedora-x86_64-m32, " gdb-buildbot
2020-01-10 15:09 ` Failures on Fedora-x86_64-m64, " gdb-buildbot
2020-01-10 16:01 ` Failures on Fedora-x86_64-native-gdbserver-m32, " gdb-buildbot
2020-01-10 16:08 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " gdb-buildbot
2020-01-10 16:35 ` Failures on Fedora-x86_64-native-gdbserver-m64, " gdb-buildbot
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).