public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2
@ 2017-07-25 11:55 sergiodj+buildbot
  2017-07-25 11:55 ` Failures on Fedora-s390x-m64, branch gdb-8.0-branch sergiodj+buildbot
                   ` (12 more replies)
  0 siblings, 13 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 11:55 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 50e64da58e648ff8708935add5b2a87b4e590edf ***

Author: Yao Qi <yao.qi@linaro.org>
Branch: gdb-8.0-branch
Commit: 50e64da58e648ff8708935add5b2a87b4e590edf

[ARM] Access FPSCR on vfpv2

GDB can fetch or store FPSCR on vfpv3, which has 32 VFP registers, but
fail to do so on vfpv2, which has 16 VFP registers.  GDB code is incorrect
for vfpv2,

       else if (tdep->vfp_register_count > 0
 	       && regno >= ARM_D0_REGNUM
	       && regno <= ARM_D0_REGNUM + tdep->vfp_register_count)

while FPSCR register number is defined as ARM_D0_REGNUM + 32.

  ARM_D0_REGNUM,		/* VFP double-precision registers.  */
  ARM_D31_REGNUM = ARM_D0_REGNUM + 31,
  ARM_FPSCR_REGNUM,

The code above uses "<=" rather than "<", in order to put FPSCR in the
range, but it is only correct when tdep->vfp_register_count is 32.  On
vpfv2, it is 16, and FPSCR is out of the range, so fetch_vfp_regs or
store_vfp_regs are not called.

gdb:

2017-07-25  Yao Qi  <yao.qi@linaro.org>

	PR tdep/21717
	* arm-linux-nat.c (arm_linux_fetch_inferior_registers): Update
	condition for FPSCR.
	(arm_linux_store_inferior_registers): Likewise.


^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-s390x-m64, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
@ 2017-07-25 11:55 ` sergiodj+buildbot
  2017-07-25 13:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 11:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	marist-fedora-s390x

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-s390x-m64/builds/5802>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-s390x-m64/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
new FAIL: gdb.python/py-mi-objfile.exp: check if python 2.4
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=3: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=6: wait for stops
PASS -> FAIL: gdb.threads/watchthreads.exp: threaded watch loop
PASS -> FAIL: gdb.threads/watchthreads.exp: combination of threaded watchpoints = 30
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
  2017-07-25 11:55 ` Failures on Fedora-s390x-m64, branch gdb-8.0-branch sergiodj+buildbot
@ 2017-07-25 13:41 ` sergiodj+buildbot
  2017-07-25 13:42 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 13:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m64/builds/6698>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m64/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/range-stepping.exp: interrupt: send ctrl-c to GDB: 1 vCont;r
new FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 9: thread apply 2 print $_siginfo.si_signo
new FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 11: thread apply 2 print $_siginfo.si_signo
new FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 13: thread apply 2 print $_siginfo.si_signo
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Ubuntu-AArch32-native-gdbserver-m32, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
  2017-07-25 11:55 ` Failures on Fedora-s390x-m64, branch gdb-8.0-branch sergiodj+buildbot
  2017-07-25 13:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2017-07-25 13:42 ` sergiodj+buildbot
  2017-07-25 13:51 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 13:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-gdbserver-m32/builds/1043>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-gdbserver-m32/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
PASS -> FAIL: gdb.mi/mi-var-rtti.exp: run to mi-var-rtti.cc:306
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=0: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=1: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=2: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=4: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=15: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=18: wait for stops
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2017-07-25 13:42 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-07-25 13:51 ` sergiodj+buildbot
  2017-07-25 13:54 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 13:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch64-native-gdbserver-m64/builds/2419>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch64-native-gdbserver-m64/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=4: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=10: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=14: wait for stops
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m64, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2017-07-25 13:51 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-07-25 13:54 ` sergiodj+buildbot
  2017-07-25 14:04 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 13:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m64/builds/6663>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m64/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-m32, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2017-07-25 13:54 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
@ 2017-07-25 14:04 ` sergiodj+buildbot
  2017-07-25 14:07 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m32/builds/6682>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m32/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-load.exp: plain unload: continue
PASS -> FAIL: gdb.base/catch-load.exp: rx unload: continue
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #7
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #8
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2017-07-25 14:04 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2017-07-25 14:07 ` sergiodj+buildbot
  2017-07-25 14:07 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6667>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-load.exp: plain unload: continue
PASS -> FAIL: gdb.base/catch-load.exp: rx unload: continue
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #7
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #8
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> FAIL: gdb.base/unload.exp: continue to shrfunc2
PASS -> FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> FAIL: gdb.base/unload.exp: print y from libfile2
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
PASS -> FAIL: gdb.trace/mi-tracepoint-changed.exp: pending resolved: tracepoint on pendfunc2 becomes pending again
PASS -> FAIL: gdb.trace/mi-tracepoint-changed.exp: pending resolved:
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2017-07-25 14:07 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
@ 2017-07-25 14:07 ` sergiodj+buildbot
  2017-07-25 14:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-native-extended-gdbserver-m32/builds/1053>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-native-extended-gdbserver-m32/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=7: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=8: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=10: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=12: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=13: wait for stops
PASS -> FAIL: gdb.threads/pthreads.exp: check backtrace from thread 1
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2017-07-25 14:07 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-07-25 14:22 ` sergiodj+buildbot
  2017-07-25 14:24 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-extended-gdbserver-m32/builds/6671>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-extended-gdbserver-m32/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-load.exp: plain unload: continue
PASS -> FAIL: gdb.base/catch-load.exp: rx unload: continue
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #7
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #8
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> FAIL: gdb.base/unload.exp: continue to shrfunc2
PASS -> FAIL: gdb.base/unload.exp: pending breakpoint info on second run at shrfunc2
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> FAIL: gdb.base/unload.exp: print y from libfile2
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
PASS -> FAIL: gdb.trace/change-loc.exp: 1 trace: tracepoint with two locations - pending
PASS -> FAIL: gdb.trace/change-loc.exp: 2 trace: tracepoint with two locations - pending
PASS -> FAIL: gdb.trace/mi-tracepoint-changed.exp: pending resolved: tracepoint on pendfunc2 becomes pending again
PASS -> FAIL: gdb.trace/mi-tracepoint-changed.exp: pending resolved:
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-m64, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (8 preceding siblings ...)
  2017-07-25 14:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2017-07-25 14:24 ` sergiodj+buildbot
  2017-07-25 14:30 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-m64/builds/6717>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-m64/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/step-over-syscall.exp: clone: displaced=off: single step over clone
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Ubuntu-AArch32-m32, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (9 preceding siblings ...)
  2017-07-25 14:24 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2017-07-25 14:30 ` sergiodj+buildbot
  2017-07-25 14:35 ` Failures on Fedora-i686, " sergiodj+buildbot
  2017-07-25 14:38 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-trusty-aarch32-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Ubuntu-AArch32-m32/builds/1052>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Ubuntu-AArch32-m32/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=5: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=8: wait for stops
new FAIL: gdb.threads/interrupt-while-step-over.exp: displaced-stepping=off: iter=11: wait for stops
PASS -> FAIL: gdb.threads/pthreads.exp: check backtrace from thread 1
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-i686, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (10 preceding siblings ...)
  2017-07-25 14:30 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
@ 2017-07-25 14:35 ` sergiodj+buildbot
  2017-07-25 14:38 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-i686/builds/6699>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-i686/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-load.exp: plain unload: continue
PASS -> FAIL: gdb.base/catch-load.exp: rx unload: continue
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #7
PASS -> FAIL: gdb.base/info-shared.exp: info sharedlibrary #8
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile
PASS -> FAIL: gdb.base/unload.exp: continuing to unloaded libfile2
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved: breakpoint on pendfunc3 pending again
PASS -> FAIL: gdb.mi/mi-breakpoint-changed.exp: test_pending_resolved: pending resolved:
PASS -> FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-cc-with-index, branch gdb-8.0-branch
  2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
                   ` (11 preceding siblings ...)
  2017-07-25 14:35 ` Failures on Fedora-i686, " sergiodj+buildbot
@ 2017-07-25 14:38 ` sergiodj+buildbot
  12 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 14:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-cc-with-index/builds/6639>

Commit(s) tested:
	50e64da58e648ff8708935add5b2a87b4e590edf

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Access FPSCR on vfpv2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-cc-with-index/50/50e64da58e648ff8708935add5b2a87b4e590edf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2018-01-24 19:40 [binutils-gdb/gdb-8.0-branch] Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4 sergiodj+buildbot
@ 2018-01-24 20:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2018-01-24 20:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/8627>

Commit(s) tested:
	621a88c13ad39cccc8ba511ff3088cd623e9f335

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/62/621a88c13ad39cccc8ba511ff3088cd623e9f335/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2018-01-15 19:11 [binutils-gdb/gdb-8.0-branch] Fix scm-ports.exp regression sergiodj+buildbot
@ 2018-01-15 19:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2018-01-15 19:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/8528>

Commit(s) tested:
	92533dc55ed6aee88da718487f075692074b00dd

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Fix scm-ports.exp regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/92/92533dc55ed6aee88da718487f075692074b00dd/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.guile/scm-ports.exp: buffered: seek to $sp
PASS -> FAIL: gdb.guile/scm-ports.exp: buffered: seek to $sp for restore
PASS -> FAIL: gdb.guile/scm-ports.exp: unbuffered: seek to $sp
PASS -> FAIL: gdb.guile/scm-ports.exp: unbuffered: seek to $sp for restore
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
new KFAIL: gdb.threads/watchthreads2.exp: gdb can drop watchpoints in multithreaded app
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2018-01-03 15:41 [binutils-gdb/gdb-8.0-branch] Fix PR19061, gdb hangs/spins-on-cpu when debugging any program on Alpha sergiodj+buildbot
@ 2018-01-03 15:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2018-01-03 15:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/8417>

Commit(s) tested:
	bd496067387a9c89a7e62bbba76e784634936932

Author(s) (in the same order as the commits):
	Richard Henderson <rth@redhat.com>

Subject:
	Fix PR19061, gdb hangs/spins-on-cpu when debugging any program on Alpha

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/bd/bd496067387a9c89a7e62bbba76e784634936932/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-10-27  0:15 [binutils-gdb/gdb-8.0-branch] Fix dwarf2_string_attr for -gsplit-dwarf sergiodj+buildbot
@ 2017-10-28  5:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-10-28  5:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7750>

Commit(s) tested:
	06848393c68c1b370cf2441756ed7413f4442515

Author(s) (in the same order as the commits):
	Leszek Swirski <leszeks@google.com>

Subject:
	Fix dwarf2_string_attr for -gsplit-dwarf

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/06/06848393c68c1b370cf2441756ed7413f4442515/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 3
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 ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-10-16  8:26 [binutils-gdb/gdb-8.0-branch] PR22137: gdbserver crashes on host with pkru register sergiodj+buildbot
@ 2017-10-18  6:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-10-18  6:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7636>

Commit(s) tested:
	f24b864960e61f9a91f8c168c1afe12a6676ad7a

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	PR22137: gdbserver crashes on host with pkru register.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/f2/f24b864960e61f9a91f8c168c1afe12a6676ad7a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-09-07 16:12 [binutils-gdb/gdb-8.0-branch] Bump GDB version number to 8.0.1.DATE-git sergiodj+buildbot
@ 2017-09-07 16:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-09-07 16:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7085>

Commit(s) tested:
	14c2ca3638ce928546f1aaf9eda752bcdae78d99

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Bump GDB version number to 8.0.1.DATE-git.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/14/14c2ca3638ce928546f1aaf9eda752bcdae78d99/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
new FAIL: gdb.go/methods.exp: setting breakpoint at main.T.Foo
new FAIL: gdb.go/methods.exp: setting breakpoint at
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locc
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locf
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locd
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-09-07 15:32 [binutils-gdb/gdb-8.0-branch] Set GDB version number to 8.0.1 sergiodj+buildbot
@ 2017-09-07 15:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-09-07 15:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7084>

Commit(s) tested:
	2dcf9205c32aa69c102640962ff03746d04c02cc

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Set GDB version number to 8.0.1.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/2d/2dcf9205c32aa69c102640962ff03746d04c02cc/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-09-05 20:39 [binutils-gdb/gdb-8.0-branch] Test different follow-exec-mode settings in gdb.multi/multi-arch-exec.exp sergiodj+buildbot
@ 2017-09-05 22:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-09-05 22:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7057>

Commit(s) tested:
	e8311673316b29c557dcc18a09e252de724dc910

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Test different follow-exec-mode settings in gdb.multi/multi-arch-exec.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/e8/e8311673316b29c557dcc18a09e252de724dc910/>

*** Diff to previous build ***
============================
new FAIL: gdb.go/methods.exp: setting breakpoint at main.T.Foo
new FAIL: gdb.go/methods.exp: setting breakpoint at
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locc
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locf
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locd
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-09-05 20:09 [binutils-gdb/gdb-8.0-branch] Add thread after updating gdbarch when exec'ing sergiodj+buildbot
@ 2017-09-05 21:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-09-05 21:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7056>

Commit(s) tested:
	42f0d8218d9865d076a13a1a30e317232eae0721

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Add thread after updating gdbarch when exec'ing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/42/42f0d8218d9865d076a13a1a30e317232eae0721/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: continue to sigusr1_handler
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-09-05 18:17 [binutils-gdb/gdb-8.0-branch] Improve "'g' reply is is to long" error message sergiodj+buildbot
@ 2017-09-05 19:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-09-05 19:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/7054>

Commit(s) tested:
	e72d662aba1bc92e141688ebb27f3948ec5d2997

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Improve "'g' reply is is to long" error message

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/e7/e72d662aba1bc92e141688ebb27f3948ec5d2997/>

*** Diff to previous build ***
============================
new FAIL: gdb.go/methods.exp: setting breakpoint at main.T.Foo
new FAIL: gdb.go/methods.exp: setting breakpoint at
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
new FAIL: gdb.trace/unavailable.exp: unavailable locals: auto locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locc
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locf
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: print locd
new FAIL: gdb.trace/unavailable.exp: unavailable locals: register locals: ctf: info locals
new FAIL: gdb.trace/unavailable.exp: unavailable locals: static locals: ctf: info locals
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-09-01  5:50 [binutils-gdb/gdb-8.0-branch] PR gdb/22046: Fix T-stopped detach regression on old Linux kernels sergiodj+buildbot
@ 2017-09-01  9:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-09-01  9:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6931>

Commit(s) tested:
	c247e38d78a98f85066e4a61032ee742d08a0579

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	PR gdb/22046: Fix T-stopped detach regression on old Linux kernels

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/c2/c247e38d78a98f85066e4a61032ee742d08a0579/>





^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-08-28 22:06 [binutils-gdb/gdb-8.0-branch] define_command: Don't convert command name to lower case sergiodj+buildbot
@ 2017-08-28 22:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-08-28 22:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6894>

Commit(s) tested:
	95eeca3bccb6121c201183e21cb5fc39a6b711a2

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	define_command: Don't convert command name to lower case

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/95/95eeca3bccb6121c201183e21cb5fc39a6b711a2/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.mi/new-ui-mi-sync.exp: sync-command=run: add-inferior
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-08-11 13:36 [binutils-gdb/gdb-8.0-branch] PR breakpoints/21886: mem-break: Fix breakpoint insertion location sergiodj+buildbot
@ 2017-08-14 13:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-08-14 13:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6787>

Commit(s) tested:
	b3e687f4c5e2bd847ea0608fd8960820f3efbda3

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	PR breakpoints/21886: mem-break: Fix breakpoint insertion location

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/b3/b3e687f4c5e2bd847ea0608fd8960820f3efbda3/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.cp/exceptprint.exp: string: print exception value at throw
PASS -> FAIL: gdb.cp/exceptprint.exp: string: print exception value at catch
PASS -> FAIL: gdb.cp/exceptprint.exp: string: print exception value at rethrow
PASS -> FAIL: gdb.cp/exceptprint.exp: int: print exception value at throw
PASS -> FAIL: gdb.cp/exceptprint.exp: int: print exception value at catch
PASS -> FAIL: gdb.cp/exceptprint.exp: int: print exception value at rethrow
PASS -> FAIL: gdb.cp/exceptprint.exp: struct: print exception value at throw
PASS -> FAIL: gdb.cp/exceptprint.exp: struct: print exception value at catch
PASS -> FAIL: gdb.cp/exceptprint.exp: struct: print exception value at rethrow
PASS -> FAIL: gdb.cp/exceptprint.exp: reference to struct: print exception value at throw
PASS -> FAIL: gdb.cp/exceptprint.exp: reference to struct: print exception value at catch
PASS -> FAIL: gdb.cp/exceptprint.exp: reference to struct: print exception value at rethrow
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 3
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-07-25 12:38 [binutils-gdb/gdb-8.0-branch] Catch exceptions thrown from gdbarch_skip_prologue sergiodj+buildbot
@ 2017-07-25 16:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 16:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6669>

Commit(s) tested:
	cd33a03d183a268b83ccbcae07f3788308e8d9f4

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Catch exceptions thrown from gdbarch_skip_prologue

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/cd/cd33a03d183a268b83ccbcae07f3788308e8d9f4/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-06-04 17:35 [binutils-gdb/gdb-8.0-branch] Bump GDB version number to 8.0.0.DATE-git sergiodj+buildbot
@ 2017-06-04 18:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-06-04 18:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6256>

Commit(s) tested:
	ec8457a3b04f48c6f7750044f1145b002eebb281

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Bump GDB version number to 8.0.0.DATE-git.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/ec/ec8457a3b04f48c6f7750044f1145b002eebb281/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 3
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-06-04 16:16 [binutils-gdb/gdb-8.0-branch] Set GDB version number to 8.0 sergiodj+buildbot
@ 2017-06-04 16:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-06-04 16:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6254>

Commit(s) tested:
	1f1c02597cc199227226251a2ea51fe5f44b4d6d

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Set GDB version number to 8.0.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/1f/1f1c02597cc199227226251a2ea51fe5f44b4d6d/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-31  9:51 [binutils-gdb/gdb-8.0-branch] Avoid compilation warning on MinGW in xstrndup sergiodj+buildbot
@ 2017-06-01  7:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-06-01  7:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6233>

Commit(s) tested:
	ce3dd59c3d6e677bb6bbed432205d3a75476f548

Author(s) (in the same order as the commits):
	Eli Zaretskii <eliz@gnu.org>

Subject:
	Avoid compilation warning on MinGW in xstrndup

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/ce/ce3dd59c3d6e677bb6bbed432205d3a75476f548/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-31  9:00 [binutils-gdb/gdb-8.0-branch] Make libiberty/waitpid.c compile without warnings on MinGW sergiodj+buildbot
@ 2017-06-01  6:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-06-01  6:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6232>

Commit(s) tested:
	704f06fe081d9b17eb192c0db91d8367edcd6c9e

Author(s) (in the same order as the commits):
	Eli Zaretskii <eliz@gnu.org>

Subject:
	Make libiberty/waitpid.c compile without warnings on MinGW

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/70/704f06fe081d9b17eb192c0db91d8367edcd6c9e/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/new-ui.exp: do_test: delete all breakpoints on extra console
PASS -> FAIL: gdb.base/new-ui.exp: do_test: main console: next
PASS -> FAIL: gdb.base/new-ui.exp: do_test: main console: next causes no spurious output on other console
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-31  8:40 [binutils-gdb/gdb-8.0-branch] Fix MinGW compilation warnings due to environ.h sergiodj+buildbot
@ 2017-06-01  5:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-06-01  5:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6231>

Commit(s) tested:
	1e4004c976aaf2b9881f6044cefdb0941e38ddb9

Author(s) (in the same order as the commits):
	Eli Zaretskii <eliz@gnu.org>

Subject:
	Fix MinGW compilation warnings due to environ.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/1e/1e4004c976aaf2b9881f6044cefdb0941e38ddb9/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-30 12:15 [binutils-gdb/gdb-8.0-branch] Fix NEWS formatting in GDB 8.0 section sergiodj+buildbot
@ 2017-05-30 18:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-30 18:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6206>

Commit(s) tested:
	d65c730fcebc853250aee5e33693c9e13e9b26ed

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix NEWS formatting in GDB 8.0 section

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/d6/d65c730fcebc853250aee5e33693c9e13e9b26ed/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-26  8:02 [binutils-gdb/gdb-8.0-branch] Fix compilation errors with mingw.org's MinGW runtime 3.X sergiodj+buildbot
@ 2017-05-26  8:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-26  8:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6186>

Commit(s) tested:
	fefc936892e3a1058a7b89fe5bb58366bf78fe74

Author(s) (in the same order as the commits):
	Eli Zaretskii <eliz@gnu.org>

Subject:
	Fix compilation errors with mingw.org's MinGW runtime 3.X

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/fe/fefc936892e3a1058a7b89fe5bb58366bf78fe74/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, not optimized: check $_probe_arg1 for probe m4
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, not optimized: check $_probe_arg1 for probe m4
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: check $_probe_arg1 for probe m4
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: print $_probe_arg1 for probe ps
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: check $_probe_arg1 for probe m4
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: print $_probe_arg1 for probe ps
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-19 13:46 [binutils-gdb/gdb-8.0-branch] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
@ 2017-05-19 18:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 18:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6147>

Commit(s) tested:
	814385bb257fec68e0e64d43f2ccc40e219342e7

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: clear define (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/81/814385bb257fec68e0e64d43f2ccc40e219342e7/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-19 12:57 [binutils-gdb/gdb-8.0-branch] Fix tui compilation with Solaris libcurses: non-const last arg to mvwaddstr (PR tui/21482) sergiodj+buildbot
@ 2017-05-19 15:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-19 15:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6145>

Commit(s) tested:
	a1cc26f6c36117f7abbd1e7d347030c37ebb30b6

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix tui compilation with Solaris libcurses: non-const last arg to mvwaddstr (PR tui/21482)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/a1/a1cc26f6c36117f7abbd1e7d347030c37ebb30b6/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
PASS -> FAIL: gdb.base/range-stepping.exp: interrupt: send ctrl-c to GDB: 1 vCont;r
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-19  8:20 [binutils-gdb/gdb-8.0-branch] Avoid compiler warning in MinGW build sergiodj+buildbot
@ 2017-05-19  8:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-19  8:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6140>

Commit(s) tested:
	db9a60402429d9bed9b531f7d1584860babe2c22

Author(s) (in the same order as the commits):
	Eli Zaretskii <eliz@gnu.org>

Subject:
	Avoid compiler warning in MinGW build

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/db/db9a60402429d9bed9b531f7d1584860babe2c22/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-18 16:36 [binutils-gdb/gdb-8.0-branch] Expect prompt after no FPU warning sergiodj+buildbot
@ 2017-05-18 17:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-18 17:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6136>

Commit(s) tested:
	f864c7e8536b0e3e860e99cd6b9188b0fbbd7912

Author(s) (in the same order as the commits):
	Thomas Preud'homme <thomas.preudhomme@arm.com>

Subject:
	Expect prompt after no FPU warning

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/f8/f864c7e8536b0e3e860e99cd6b9188b0fbbd7912/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-17 15:54 [binutils-gdb/gdb-8.0-branch] Add alias command to cmd_list_element sergiodj+buildbot
@ 2017-05-17 16:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-17 16:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6126>

Commit(s) tested:
	efaba6bc8fa1cb074bcaa16f48766164ccaa1005

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Add alias command to cmd_list_element

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/ef/efaba6bc8fa1cb074bcaa16f48766164ccaa1005/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-17  6:09 [binutils-gdb/gdb-8.0-branch] Avoid exponential behavior in rust_evaluate_subexp sergiodj+buildbot
@ 2017-05-17 10:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-17 10:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6122>

Commit(s) tested:
	69e9e8a0d5ae31e9869658771a7d399a53ac7833

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Avoid exponential behavior in rust_evaluate_subexp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/69/69e9e8a0d5ae31e9869658771a7d399a53ac7833/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-17  5:53 [binutils-gdb/gdb-8.0-branch] Fix rust_dump_subexp_body sergiodj+buildbot
@ 2017-05-17  9:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-17  9:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6121>

Commit(s) tested:
	b6486c1f82fab968ee119b0fbcfadfdbd0dad745

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Fix rust_dump_subexp_body

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/b6/b6486c1f82fab968ee119b0fbcfadfdbd0dad745/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-17  5:31 [binutils-gdb/gdb-8.0-branch] Replace "return" with "break" sergiodj+buildbot
@ 2017-05-17  8:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-17  8:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6120>

Commit(s) tested:
	d05228c1bb3b8f8b9e187c4b76d0c71a72ba15e8

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Replace "return" with "break"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/d0/d05228c1bb3b8f8b9e187c4b76d0c71a72ba15e8/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-15 12:58 [binutils-gdb/gdb-8.0-branch] Fix gdb 8.0 procfs.c compilation on Solaris sergiodj+buildbot
@ 2017-05-15 12:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-15 12:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6112>

Commit(s) tested:
	81aeac9bbd02fc80048e51a1bb67484eb58852dc

Author(s) (in the same order as the commits):
	Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>

Subject:
	Fix gdb 8.0 procfs.c compilation on Solaris

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/81/81aeac9bbd02fc80048e51a1bb67484eb58852dc/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04 20:47 [binutils-gdb/gdb-8.0-branch] Bump GDB version number to 7.99.91.DATE-git sergiodj+buildbot
@ 2017-05-05  4:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-05  4:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6066>

Commit(s) tested:
	65ea01b5924c8ed220368def5dde3151d071d6df

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Bump GDB version number to 7.99.91.DATE-git.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/65/65ea01b5924c8ed220368def5dde3151d071d6df/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04 20:26 [binutils-gdb/gdb-8.0-branch] Set GDB version number to 7.99.91 sergiodj+buildbot
@ 2017-05-05  3:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-05  3:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6065>

Commit(s) tested:
	893df71e62f1ec3b3f2799a919db936e60adf820

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Set GDB version number to 7.99.91.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/89/893df71e62f1ec3b3f2799a919db936e60adf820/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04 20:08 [binutils-gdb/gdb-8.0-branch] gdb/NEWS: rewrite "since GDB 7.12" into "in GDB 8.0" sergiodj+buildbot
@ 2017-05-05  2:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-05  2:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6064>

Commit(s) tested:
	6261be561546d93adb47bbd354e290896444b149

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	gdb/NEWS: rewrite "since GDB 7.12" into "in GDB 8.0"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/62/6261be561546d93adb47bbd354e290896444b149/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04 16:25 [binutils-gdb/gdb-8.0-branch] Fix gdb.python/py-record-btrace-threads.exp with Python 3 sergiodj+buildbot
@ 2017-05-05  0:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-05  0:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6062>

Commit(s) tested:
	1332b4fa37e2b688533ef3eb86a7b1aaced90465

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdb.python/py-record-btrace-threads.exp with Python 3

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/13/1332b4fa37e2b688533ef3eb86a7b1aaced90465/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04 12:07 [binutils-gdb/gdb-8.0-branch] Python: Introduce gdb.Instruction class sergiodj+buildbot
@ 2017-05-04 18:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-04 18:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6056>

Commit(s) tested:
	ac7d85722af3e8a4db69940b77b82ca173ba3877

Author(s) (in the same order as the commits):
	Tim Wiederhake <tim.wiederhake@intel.com>

Subject:
	Python: Introduce gdb.Instruction class

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/ac/ac7d85722af3e8a4db69940b77b82ca173ba3877/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/interrupt.exp: echo data
new FAIL: gdb.base/interrupt.exp: Send Control-C, second time
new FAIL: gdb.base/interrupt.exp: signal SIGINT
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04 11:08 [binutils-gdb/gdb-8.0-branch] Python: Move and rename gdb.BtraceFunction sergiodj+buildbot
@ 2017-05-04 16:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-04 16:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6055>

Commit(s) tested:
	5b2f026c0dca5e25c98f2a8288365386ec5bdffc

Author(s) (in the same order as the commits):
	Tim Wiederhake <tim.wiederhake@intel.com>

Subject:
	Python: Move and rename gdb.BtraceFunction

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/5b/5b2f026c0dca5e25c98f2a8288365386ec5bdffc/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04  9:34 [binutils-gdb/gdb-8.0-branch] Python: Introduce gdb.RecordGap class sergiodj+buildbot
@ 2017-05-04 14:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-04 14:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6053>

Commit(s) tested:
	7dce57d1b5d8b26efd658069c7047eba57733eb4

Author(s) (in the same order as the commits):
	Tim Wiederhake <tim.wiederhake@intel.com>

Subject:
	Python: Introduce gdb.RecordGap class

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/7d/7dce57d1b5d8b26efd658069c7047eba57733eb4/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/range-stepping.exp: interrupt: send ctrl-c to GDB: 1 vCont;r
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04  9:09 [binutils-gdb/gdb-8.0-branch] Python: Remove ptid from gdb.Record interface sergiodj+buildbot
@ 2017-05-04 13:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-04 13:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6052>

Commit(s) tested:
	26597c93accd6121c7aba550dfc6b1f78dfbfe6f

Author(s) (in the same order as the commits):
	Tim Wiederhake <tim.wiederhake@intel.com>

Subject:
	Python: Remove ptid from gdb.Record interface

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/26/26597c93accd6121c7aba550dfc6b1f78dfbfe6f/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-04  7:31 [binutils-gdb/gdb-8.0-branch] Python: Fix indentation in py-record-btrace.c sergiodj+buildbot
@ 2017-05-04 10:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-04 10:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6050>

Commit(s) tested:
	d4c682630c6ff6c8e159b833e7a8f2915853369a

Author(s) (in the same order as the commits):
	Tim Wiederhake <tim.wiederhake@intel.com>

Subject:
	Python: Fix indentation in py-record-btrace.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/d4/d4c682630c6ff6c8e159b833e7a8f2915853369a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/new-ui.exp: do_test: delete all breakpoints on extra console
PASS -> FAIL: gdb.base/new-ui.exp: do_test: main console: next causes no spurious output on other console
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-05-03 19:59 [binutils-gdb/gdb-8.0-branch] Make sure malloc is linked into gdb.cp/oranking.cc sergiodj+buildbot
@ 2017-05-03 20:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-05-03 20:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/6046>

Commit(s) tested:
	c2449d01b73b19acaf5add85b64c584fca9da366

Author(s) (in the same order as the commits):
	Keith Seitz <keiths@redhat.com>

Subject:
	Make sure malloc is linked into gdb.cp/oranking.cc.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/c2/c2449d01b73b19acaf5add85b64c584fca9da366/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: continue to sigusr1_handler
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-28 10:12 [binutils-gdb/gdb-8.0-branch] Use ptid method lwp in mips_linux_new_thread sergiodj+buildbot
@ 2017-04-28 15:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-28 15:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5997>

Commit(s) tested:
	d41089194ff10dc538fce0bcd4c30fc4d94935d3

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Use ptid method lwp in mips_linux_new_thread

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/d4/d41089194ff10dc538fce0bcd4c30fc4d94935d3/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 3
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-28  9:32 [binutils-gdb/gdb-8.0-branch] [MIPS] Use lwpid from lwp_info instead of inferior_ptid sergiodj+buildbot
@ 2017-04-28 12:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-28 12:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5995>

Commit(s) tested:
	c6767e625c0fb73c9a12d991140670a00ad8284c

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[MIPS] Use lwpid from lwp_info instead of inferior_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/c6/c6767e625c0fb73c9a12d991140670a00ad8284c/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/range-stepping.exp: interrupt: send ctrl-c to GDB: 1 vCont;r
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: step
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: next: next
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-28  0:50 [binutils-gdb/gdb-8.0-branch] Fix overload resolution involving rvalue references and cv qualifiers sergiodj+buildbot
@ 2017-04-28  4:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-28  4:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5991>

Commit(s) tested:
	16de50a5e2c368fa8e1213697a15ed5b5bea574f

Author(s) (in the same order as the commits):
	Keith Seitz <keiths@redhat.com>

Subject:
	Fix overload resolution involving rvalue references and cv qualifiers.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/16/16de50a5e2c368fa8e1213697a15ed5b5bea574f/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: server exits
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-27 23:32 [binutils-gdb/gdb-8.0-branch] Add missing incref when creating Inferior Python object sergiodj+buildbot
@ 2017-04-28  0:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-28  0:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5989>

Commit(s) tested:
	9b81aa9a8b1f488939b65ce59b6ba71477c4b8d4

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Add missing incref when creating Inferior Python object

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/9b/9b81aa9a8b1f488939b65ce59b6ba71477c4b8d4/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-21 18:09 [binutils-gdb/gdb-8.0-branch] release branch: Fix: --enable-werror sergiodj+buildbot
@ 2017-04-21 18:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-21 18:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5922>

Commit(s) tested:
	b2e445cf19788caa3640e8cfacab82995d2b1d13

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	release branch: Fix: --enable-werror

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/b2/b2e445cf19788caa3640e8cfacab82995d2b1d13/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/thread-unwindonsignal.exp: continue until exit
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-18 17:29 [binutils-gdb/gdb-8.0-branch] PR threads/20743: Don't attempt to suspend or resume exited threads sergiodj+buildbot
@ 2017-04-18 18:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-18 18:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5896>

Commit(s) tested:
	24b03ea864424cf8482ba07fb074389aa759e592

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	PR threads/20743: Don't attempt to suspend or resume exited threads.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/24/24b03ea864424cf8482ba07fb074389aa759e592/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/interrupted-hand-call.exp: continue until exit
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: step: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.trace/mi-tsv-changed.exp: create delete modify: tvariable $tvar3 modified
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch
  2017-04-17 15:22 [binutils-gdb/gdb-8.0-branch] Set development mode to "off" by default sergiodj+buildbot
@ 2017-04-17 18:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 61+ messages in thread
From: sergiodj+buildbot @ 2017-04-17 18:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-x86_64-native-gdbserver-m32/builds/5890>

Commit(s) tested:
	2e341fefa9fb8e63c9ac930a1f2228a06d496706

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Set development mode to "off" by default.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-x86_64-native-gdbserver-m32/2e/2e341fefa9fb8e63c9ac930a1f2228a06d496706/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/interrupt.exp: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: continue: continue
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 3
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: unbreak loop in thread 3
============================


*** Complete list of XFAILs for this builder ***

FAILURE TO OBTAIN THE COMMIT FOR THE XFAIL LIST.  PLEASE CONTACT THE BUILDBOT ADMIN.




^ permalink raw reply	[flat|nested] 61+ messages in thread

end of thread, other threads:[~2018-01-24 20:37 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-25 11:55 [binutils-gdb/gdb-8.0-branch] [ARM] Access FPSCR on vfpv2 sergiodj+buildbot
2017-07-25 11:55 ` Failures on Fedora-s390x-m64, branch gdb-8.0-branch sergiodj+buildbot
2017-07-25 13:41 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2017-07-25 13:42 ` Failures on Ubuntu-AArch32-native-gdbserver-m32, " sergiodj+buildbot
2017-07-25 13:51 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2017-07-25 13:54 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2017-07-25 14:04 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2017-07-25 14:07 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj+buildbot
2017-07-25 14:07 ` Failures on Ubuntu-AArch32-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-07-25 14:22 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2017-07-25 14:24 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2017-07-25 14:30 ` Failures on Ubuntu-AArch32-m32, " sergiodj+buildbot
2017-07-25 14:35 ` Failures on Fedora-i686, " sergiodj+buildbot
2017-07-25 14:38 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
  -- strict thread matches above, loose matches on Subject: below --
2018-01-24 19:40 [binutils-gdb/gdb-8.0-branch] Fix GCC PR83906 - [8 Regression] Random FAIL: libstdc++-prettyprinters/80276.cc whatis p4 sergiodj+buildbot
2018-01-24 20:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2018-01-15 19:11 [binutils-gdb/gdb-8.0-branch] Fix scm-ports.exp regression sergiodj+buildbot
2018-01-15 19:11 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2018-01-03 15:41 [binutils-gdb/gdb-8.0-branch] Fix PR19061, gdb hangs/spins-on-cpu when debugging any program on Alpha sergiodj+buildbot
2018-01-03 15:43 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-10-27  0:15 [binutils-gdb/gdb-8.0-branch] Fix dwarf2_string_attr for -gsplit-dwarf sergiodj+buildbot
2017-10-28  5:22 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-10-16  8:26 [binutils-gdb/gdb-8.0-branch] PR22137: gdbserver crashes on host with pkru register sergiodj+buildbot
2017-10-18  6:50 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-09-07 16:12 [binutils-gdb/gdb-8.0-branch] Bump GDB version number to 8.0.1.DATE-git sergiodj+buildbot
2017-09-07 16:22 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-09-07 15:32 [binutils-gdb/gdb-8.0-branch] Set GDB version number to 8.0.1 sergiodj+buildbot
2017-09-07 15:37 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-09-05 20:39 [binutils-gdb/gdb-8.0-branch] Test different follow-exec-mode settings in gdb.multi/multi-arch-exec.exp sergiodj+buildbot
2017-09-05 22:20 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-09-05 20:09 [binutils-gdb/gdb-8.0-branch] Add thread after updating gdbarch when exec'ing sergiodj+buildbot
2017-09-05 21:23 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-09-05 18:17 [binutils-gdb/gdb-8.0-branch] Improve "'g' reply is is to long" error message sergiodj+buildbot
2017-09-05 19:50 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-09-01  5:50 [binutils-gdb/gdb-8.0-branch] PR gdb/22046: Fix T-stopped detach regression on old Linux kernels sergiodj+buildbot
2017-09-01  9:24 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-08-28 22:06 [binutils-gdb/gdb-8.0-branch] define_command: Don't convert command name to lower case sergiodj+buildbot
2017-08-28 22:55 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-08-11 13:36 [binutils-gdb/gdb-8.0-branch] PR breakpoints/21886: mem-break: Fix breakpoint insertion location sergiodj+buildbot
2017-08-14 13:28 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-07-25 12:38 [binutils-gdb/gdb-8.0-branch] Catch exceptions thrown from gdbarch_skip_prologue sergiodj+buildbot
2017-07-25 16:53 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-06-04 17:35 [binutils-gdb/gdb-8.0-branch] Bump GDB version number to 8.0.0.DATE-git sergiodj+buildbot
2017-06-04 18:50 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-06-04 16:16 [binutils-gdb/gdb-8.0-branch] Set GDB version number to 8.0 sergiodj+buildbot
2017-06-04 16:16 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-31  9:51 [binutils-gdb/gdb-8.0-branch] Avoid compilation warning on MinGW in xstrndup sergiodj+buildbot
2017-06-01  7:53 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-31  9:00 [binutils-gdb/gdb-8.0-branch] Make libiberty/waitpid.c compile without warnings on MinGW sergiodj+buildbot
2017-06-01  6:33 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-31  8:40 [binutils-gdb/gdb-8.0-branch] Fix MinGW compilation warnings due to environ.h sergiodj+buildbot
2017-06-01  5:23 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-30 12:15 [binutils-gdb/gdb-8.0-branch] Fix NEWS formatting in GDB 8.0 section sergiodj+buildbot
2017-05-30 18:39 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-26  8:02 [binutils-gdb/gdb-8.0-branch] Fix compilation errors with mingw.org's MinGW runtime 3.X sergiodj+buildbot
2017-05-26  8:24 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-19 13:46 [binutils-gdb/gdb-8.0-branch] Fix tui compilation with Solaris libcurses: clear define (PR tui/21482) sergiodj+buildbot
2017-05-19 18:16 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-19 12:57 [binutils-gdb/gdb-8.0-branch] Fix tui compilation with Solaris libcurses: non-const last arg to mvwaddstr (PR tui/21482) sergiodj+buildbot
2017-05-19 15:36 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-19  8:20 [binutils-gdb/gdb-8.0-branch] Avoid compiler warning in MinGW build sergiodj+buildbot
2017-05-19  8:41 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-18 16:36 [binutils-gdb/gdb-8.0-branch] Expect prompt after no FPU warning sergiodj+buildbot
2017-05-18 17:18 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-17 15:54 [binutils-gdb/gdb-8.0-branch] Add alias command to cmd_list_element sergiodj+buildbot
2017-05-17 16:03 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-17  6:09 [binutils-gdb/gdb-8.0-branch] Avoid exponential behavior in rust_evaluate_subexp sergiodj+buildbot
2017-05-17 10:55 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-17  5:53 [binutils-gdb/gdb-8.0-branch] Fix rust_dump_subexp_body sergiodj+buildbot
2017-05-17  9:42 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-17  5:31 [binutils-gdb/gdb-8.0-branch] Replace "return" with "break" sergiodj+buildbot
2017-05-17  8:21 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-15 12:58 [binutils-gdb/gdb-8.0-branch] Fix gdb 8.0 procfs.c compilation on Solaris sergiodj+buildbot
2017-05-15 12:58 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04 20:47 [binutils-gdb/gdb-8.0-branch] Bump GDB version number to 7.99.91.DATE-git sergiodj+buildbot
2017-05-05  4:48 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04 20:26 [binutils-gdb/gdb-8.0-branch] Set GDB version number to 7.99.91 sergiodj+buildbot
2017-05-05  3:18 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04 20:08 [binutils-gdb/gdb-8.0-branch] gdb/NEWS: rewrite "since GDB 7.12" into "in GDB 8.0" sergiodj+buildbot
2017-05-05  2:05 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04 16:25 [binutils-gdb/gdb-8.0-branch] Fix gdb.python/py-record-btrace-threads.exp with Python 3 sergiodj+buildbot
2017-05-05  0:25 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04 12:07 [binutils-gdb/gdb-8.0-branch] Python: Introduce gdb.Instruction class sergiodj+buildbot
2017-05-04 18:04 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04 11:08 [binutils-gdb/gdb-8.0-branch] Python: Move and rename gdb.BtraceFunction sergiodj+buildbot
2017-05-04 16:50 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04  9:34 [binutils-gdb/gdb-8.0-branch] Python: Introduce gdb.RecordGap class sergiodj+buildbot
2017-05-04 14:20 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04  9:09 [binutils-gdb/gdb-8.0-branch] Python: Remove ptid from gdb.Record interface sergiodj+buildbot
2017-05-04 13:09 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-04  7:31 [binutils-gdb/gdb-8.0-branch] Python: Fix indentation in py-record-btrace.c sergiodj+buildbot
2017-05-04 10:18 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-05-03 19:59 [binutils-gdb/gdb-8.0-branch] Make sure malloc is linked into gdb.cp/oranking.cc sergiodj+buildbot
2017-05-03 20:01 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-28 10:12 [binutils-gdb/gdb-8.0-branch] Use ptid method lwp in mips_linux_new_thread sergiodj+buildbot
2017-04-28 15:12 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-28  9:32 [binutils-gdb/gdb-8.0-branch] [MIPS] Use lwpid from lwp_info instead of inferior_ptid sergiodj+buildbot
2017-04-28 12:12 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-28  0:50 [binutils-gdb/gdb-8.0-branch] Fix overload resolution involving rvalue references and cv qualifiers sergiodj+buildbot
2017-04-28  4:04 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-27 23:32 [binutils-gdb/gdb-8.0-branch] Add missing incref when creating Inferior Python object sergiodj+buildbot
2017-04-28  0:47 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-21 18:09 [binutils-gdb/gdb-8.0-branch] release branch: Fix: --enable-werror sergiodj+buildbot
2017-04-21 18:08 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-18 17:29 [binutils-gdb/gdb-8.0-branch] PR threads/20743: Don't attempt to suspend or resume exited threads sergiodj+buildbot
2017-04-18 18:17 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+buildbot
2017-04-17 15:22 [binutils-gdb/gdb-8.0-branch] Set development mode to "off" by default sergiodj+buildbot
2017-04-17 18:21 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-8.0-branch sergiodj+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).