public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
@ 2016-08-09 14:34 ` sergiodj+buildbot
  2016-08-09 15:34 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (17 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 14:34 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/4092>

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-x86_64-native-gdbserver-m32/.git/tree/?h=gdb-7.12-branch&id=3f1dbd39a927c93f3b7f983eebfc00b3261fd98d>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
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] 51+ messages in thread

* [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value
@ 2016-08-09 15:04 sergiodj+buildbot
  2016-08-09 14:34 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.12-branch sergiodj+buildbot
                   ` (18 more replies)
  0 siblings, 19 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 15:04 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT def1145e5b736f7b50179a967d83211251153692 ***

Author: Pedro Alves <palves@redhat.com>
Branch: gdb-7.12-branch
Commit: def1145e5b736f7b50179a967d83211251153692

Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

With something like:

  struct A { int bitfield:4; } var;

If 'var' ends up wholly-optimized out, printing 'var.bitfield' crashes
gdb here:

 (top-gdb) bt
 #0  0x000000000058b89f in extract_unsigned_integer (addr=0x2 <error: Cannot access memory at address 0x2>, len=2, byte_order=BFD_ENDIAN_LITTLE)
     at /home/pedro/gdb/mygit/src/gdb/findvar.c:109
 #1  0x00000000005a187a in unpack_bits_as_long (field_type=0x16cff70, valaddr=0x0, bitpos=16, bitsize=12) at /home/pedro/gdb/mygit/src/gdb/value.c:3347
 #2  0x00000000005a1b9d in unpack_value_bitfield (dest_val=0x1b5d9d0, bitpos=16, bitsize=12, valaddr=0x0, embedded_offset=0, val=0x1b5d8d0)
     at /home/pedro/gdb/mygit/src/gdb/value.c:3441
 #3  0x00000000005a2a5f in value_fetch_lazy (val=0x1b5d9d0) at /home/pedro/gdb/mygit/src/gdb/value.c:3958
 #4  0x00000000005a10a7 in value_primitive_field (arg1=0x1b5d8d0, offset=0, fieldno=0, arg_type=0x16d04c0) at /home/pedro/gdb/mygit/src/gdb/value.c:3161
 #5  0x00000000005b01e5 in do_search_struct_field (name=0x1727c60 "bitfield", arg1=0x1b5d8d0, offset=0, type=0x16d04c0, looking_for_baseclass=0, result_ptr=0x7fffffffcaf8,
 [...]

unpack_value_bitfield is already optimized-out/unavailable -aware:

   (...) VALADDR points to the contents of VAL.  If the VAL's contents
   required to extract the bitfield from are unavailable/optimized
   out, DEST_VAL is correspondingly marked unavailable/optimized out.

however, it is not considering the case of the value having no
contents buffer at all, as can happen through
allocate_optimized_out_value.

gdb/ChangeLog:
2016-08-09  Pedro Alves  <palves@redhat.com>

	* value.c (unpack_value_bitfield): Skip unpacking if the parent
	has no contents buffer to begin with.

gdb/testsuite/ChangeLog:
2016-08-09  Pedro Alves  <palves@redhat.com>

	* gdb.dwarf2/bitfield-parent-optimized-out.exp: New file.


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

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
  2016-08-09 14:34 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.12-branch sergiodj+buildbot
@ 2016-08-09 15:34 ` sergiodj+buildbot
  2016-08-09 15:36 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
                   ` (16 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 15:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-x86_64-native-extended-gdbserver-m32/.git/tree/?h=gdb-7.12-branch&id=f9fd863d0a52000f4e0af02252c3e8506b3218e2>

*** 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/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] 51+ messages in thread

* Failures on Fedora-x86_64-m32, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
  2016-08-09 14:34 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.12-branch sergiodj+buildbot
  2016-08-09 15:34 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2016-08-09 15:36 ` sergiodj+buildbot
  2016-08-09 16:01 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
                   ` (15 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 15:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-x86_64-m32/.git/tree/?h=gdb-7.12-branch&id=97fb11251b54d67213d840533779c567ef6c01dd>

*** 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/multiple-step-overs.exp: displaced=on: step: step
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/signal-while-stepping-over-bp-other-thread.exp: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: force loop break in thread 2
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: stepped thread under control
============================


*** 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] 51+ messages in thread

* Failures on Debian-s390x-native-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2016-08-09 15:36 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2016-08-09 16:01 ` sergiodj+buildbot
  2016-08-09 16:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (14 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 16:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	debian-jessie-s390x-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Debian-s390x-native-gdbserver-m64/builds/2745>

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Debian-s390x-native-gdbserver-m64/.git/tree/?h=gdb-7.12-branch&id=2b414fbcf96eef244fa014360195b07a0bb9f62d>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
PASS -> FAIL: gdb.base/print-symbol-loading.exp: shlib brief: load shared-lib
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
PASS -> FAIL: gdb.python/py-finish-breakpoint.exp: catch out of scope after exec
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] 51+ messages in thread

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2016-08-09 16:01 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 16:14 ` sergiodj+buildbot
  2016-08-09 16:17 ` Failures on Debian-i686, " sergiodj+buildbot
                   ` (13 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 16:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-x86_64-native-extended-gdbserver-m64/.git/tree/?h=gdb-7.12-branch&id=75f094c0f3cb3c2451132cad84eb1fc791d78df9>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-into-signal.exp: threaded: process is still running on the attempt # 1 of 100
============================


*** 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] 51+ messages in thread

* Failures on Debian-i686, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2016-08-09 16:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 16:17 ` sergiodj+buildbot
  2016-08-09 16:31 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
                   ` (12 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 16:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-i686

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Debian-i686/.git/tree/?h=gdb-7.12-branch&id=970aa89b4f6beb61028956a7857f00c7f6af9596>

*** 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] 51+ messages in thread

* Failures on Debian-s390x-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2016-08-09 16:17 ` Failures on Debian-i686, " sergiodj+buildbot
@ 2016-08-09 16:31 ` sergiodj+buildbot
  2016-08-09 17:38 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (11 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 16:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	debian-jessie-s390x-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Debian-s390x-m64/.git/tree/?h=gdb-7.12-branch&id=4769393522dfebac3fc02c2d9f71f81f54ea907b>

*** Diff to previous build ***
============================
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
============================


*** 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] 51+ messages in thread

* Failures on Debian-s390x-native-extended-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2016-08-09 16:31 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
@ 2016-08-09 17:38 ` sergiodj+buildbot
  2016-08-09 19:34 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
                   ` (10 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 17:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	debian-jessie-s390x-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Debian-s390x-native-extended-gdbserver-m64/builds/2752>

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Debian-s390x-native-extended-gdbserver-m64/.git/tree/?h=gdb-7.12-branch&id=249b4ad9b10046a2c1cef212666f712ba0cc8096>

*** Diff to previous build ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork one
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one
PASS -> FAIL: gdb.base/print-symbol-loading.exp: shlib off: load shared-lib
PASS -> FAIL: gdb.base/print-symbol-loading.exp: shlib brief: load shared-lib
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors
new FAIL: gdb.mi/mi-nonstop.exp: stacktrace of stopped thread
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set x
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set x
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.multi/multi-attach.exp: attach to program 2
PASS -> FAIL: gdb.multi/multi-attach.exp: backtrace 2
PASS -> FAIL: gdb.python/py-finish-breakpoint.exp: catch out of scope after exec
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] 51+ messages in thread

* Failures on Debian-i686-native-extended-gdbserver, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2016-08-09 17:38 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 19:34 ` sergiodj+buildbot
  2016-08-09 19:40 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
                   ` (9 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 19:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-i686

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Debian-i686-native-extended-gdbserver/builds/3920>

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Debian-i686-native-extended-gdbserver/.git/tree/?h=gdb-7.12-branch&id=3714e6ea5613f2048b6655f192758a0ed4cf66c0>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
new FAIL: gdb.threads/attach-into-signal.exp: threaded: process is still running on the attempt # 1 of 100
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] 51+ messages in thread

* Failures on Fedora-s390x-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (8 preceding siblings ...)
  2016-08-09 19:34 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
@ 2016-08-09 19:40 ` sergiodj+buildbot
  2016-08-09 19:40 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
                   ` (8 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 19:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	marist-fedora-s390x

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-s390x-m64/.git/tree/?h=gdb-7.12-branch&id=9d6493294fb83f023a06b418829311c6b6a4ba9d>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/siginfo-thread.exp: Extract si_errno
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
============================


*** 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] 51+ messages in thread

* Failures on Fedora-x86_64-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (9 preceding siblings ...)
  2016-08-09 19:40 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
@ 2016-08-09 19:40 ` sergiodj+buildbot
  2016-08-09 20:15 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 19:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-x86_64-m64/.git/tree/?h=gdb-7.12-branch&id=12c074687ba77c706f14b49cbe95928712fccbfe>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints
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/process-dies-while-detaching.exp: single-process: continue: watchpoint: 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] 51+ messages in thread

* Failures on Fedora-ppc64be-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (10 preceding siblings ...)
  2016-08-09 19:40 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2016-08-09 20:15 ` sergiodj+buildbot
  2016-08-09 20:16 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-m64/.git/tree/?h=gdb-7.12-branch&id=82dc1b459b6441f884ad59f0ae97a880f2548449>

*** Diff to previous build ***
============================
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64le-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (11 preceding siblings ...)
  2016-08-09 20:15 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
@ 2016-08-09 20:16 ` sergiodj+buildbot
  2016-08-09 20:18 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=gdb-7.12-branch&id=d23c30a06533298d2c60c60157db0aaaea3ca3e0>

*** Internal error on buildslave (no space left on device). ***
*** Please report this to the buildslave owner (see <http://gdb-build.sergiodj.net//buildslaves/fedora-ppc64le-1>) ***

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: copy libc-2.21.so to libc.so.6
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieATTACH: unprelink break-interp-BINprelinkNOdebugINpieATTACH
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-native-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (12 preceding siblings ...)
  2016-08-09 20:16 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
@ 2016-08-09 20:18 ` sergiodj+buildbot
  2016-08-09 20:20 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for def1145e5b736f7b50179a967d83211251153692>





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

* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (13 preceding siblings ...)
  2016-08-09 20:18 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 20:20 ` sergiodj+buildbot
  2016-08-09 20:33 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for def1145e5b736f7b50179a967d83211251153692>

*** Internal error on buildslave (no space left on device). ***
*** Please report this to the buildslave owner (see <http://gdb-build.sergiodj.net//buildslaves/fedora-ppc64le-1>) ***





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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (14 preceding siblings ...)
  2016-08-09 20:20 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 20:33 ` sergiodj+buildbot
  2016-08-09 20:50 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for def1145e5b736f7b50179a967d83211251153692>





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

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (15 preceding siblings ...)
  2016-08-09 20:33 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 20:50 ` sergiodj+buildbot
  2016-08-09 20:51 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
  2016-08-11 11:53 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=75831db43e85ed6fc3b0dfed4b351c9e9d8dfb42>

*** Diff to previous build ***
============================
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64le-native-gdbserver-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (16 preceding siblings ...)
  2016-08-09 20:50 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
@ 2016-08-09 20:51 ` sergiodj+buildbot
  2016-08-11 11:53 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for def1145e5b736f7b50179a967d83211251153692>

*** Internal error on buildslave (no space left on device). ***
*** Please report this to the buildslave owner (see <http://gdb-build.sergiodj.net//buildslaves/fedora-ppc64le-1>) ***





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

* Failures on Ubuntu-AArch64-m64, branch gdb-7.12-branch
  2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (17 preceding siblings ...)
  2016-08-09 20:51 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-11 11:53 ` sergiodj+buildbot
  18 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-11 11:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

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

Commit(s) tested:
	def1145e5b736f7b50179a967d83211251153692

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

Subject:
	Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Ubuntu-AArch64-m64/.git/tree/?h=gdb-7.12-branch&id=80047a8fe16ee7f69edbf346e2bba47bf0b24750>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2017-01-01  8:58 [binutils-gdb/gdb-7.12-branch] update copyright year range in GDB files sergiodj+buildbot
@ 2017-01-01 17:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2017-01-01 17:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	16d400ab4a742988aad12f6476323bb234efb3e3

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

Subject:
	update copyright year range in GDB files

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
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
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-12-20 20:16 [binutils-gdb/gdb-7.12-branch] gdb: Fix C and C++03 builds sergiodj+buildbot
@ 2016-12-23  9:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-12-23  9:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	9bfe0298332782a9c082fb475bdf8eeeef8cf45e

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

Subject:
	gdb: Fix C and C++03 builds

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64be-cc-with-index/9b/9bfe0298332782a9c082fb475bdf8eeeef8cf45e/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: only inferior 1 left
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-12-09 17:42 [binutils-gdb/gdb-7.12-branch] Create tdep->rl78_psw_type lazily sergiodj+buildbot
@ 2016-12-16 11:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-12-16 11:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	68647b569da041a33a6504cd80f51fbd43bfa134

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

Subject:
	Create tdep->rl78_psw_type lazily

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64be-cc-with-index/68/68647b569da041a33a6504cd80f51fbd43bfa134/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-10-25  4:37 [binutils-gdb/gdb-7.12-branch] PR gdb/20653 - small cleanup in string_to_explicit_location sergiodj+buildbot
@ 2016-10-25 16:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-10-25 16:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	909de2c5cc91b815d671f7018da2a925fbd19aaf

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

Subject:
	PR gdb/20653 - small cleanup in string_to_explicit_location

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=c0248030d877eff07482ed71cc0c2a379802b931>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-10-25  3:26 [binutils-gdb/gdb-7.12-branch] [GDBserver] Fix conversion warning sergiodj+buildbot
@ 2016-10-25 12:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-10-25 12:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	a945860b6cb4f8a26343ac5dcb0b42fe5fb2f68a

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

Subject:
	[GDBserver] Fix conversion warning

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=946f8a60bd2e296e4dcbebf2ebb2f496a4817a8c>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints
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
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-10-14  7:58 [binutils-gdb/gdb-7.12-branch] Include strings.h where available sergiodj+buildbot
@ 2016-10-14 22:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-10-14 22:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	9e7fe25aebc4fe4a2c1af15447b44f50c3c97b2f

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

Subject:
	Include strings.h where available

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=ee7fee224e535da0cc443d29f21c28432d7ea91b>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one
PASS -> FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two
PASS -> FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three
PASS -> FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four
PASS -> FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: kill all one
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 0
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 1
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 2
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 3
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 4
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 5
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 6
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 7
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 8
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 9
PASS -> FAIL: gdb.base/checkpoint.exp: no more checkpoint 10
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork four
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork five
PASS -> FAIL: gdb.base/checkpoint-ns.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: kill all one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 0
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 1
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 2
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 3
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 4
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 5
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 6
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 7
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 8
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 9
PASS -> FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 10
new FAIL: gdb.compile/compile.exp: Test abbreviations and code delimiter
new FAIL: gdb.compile/compile.exp: Test abbreviations and code collision
new FAIL: gdb.compile/compile.exp: Test delimiter with -r
new FAIL: gdb.compile/compile.exp: Test delimiter with -raw
new FAIL: gdb.compile/compile.exp: Test delimiter with -r after it
new FAIL: gdb.compile/compile.exp: set variable without trailing semicolon
new FAIL: gdb.compile/compile.exp: check variable without trailing semicolon
new FAIL: gdb.compile/compile.exp: set variable from macro
new FAIL: gdb.compile/compile.exp: expect 23
new FAIL: gdb.compile/compile.exp: set variable from function-like macro
new FAIL: gdb.compile/compile.exp: expect -1
new FAIL: gdb.compile/compile.exp: set variable
new FAIL: gdb.compile/compile.exp: expect 42
new FAIL: gdb.compile/compile.exp: modify variable
new FAIL: gdb.compile/compile.exp: expect 84
new FAIL: gdb.compile/compile.exp: compile code multiline 4
new FAIL: gdb.compile/compile.exp: expect 20
new FAIL: gdb.compile/compile.exp: use external source file
new FAIL: gdb.compile/compile.exp: expect 7
new FAIL: gdb.compile/compile.exp: call static function
new FAIL: gdb.compile/compile.exp: expect 9
new FAIL: gdb.compile/compile.exp: call global function
new FAIL: gdb.compile/compile.exp: expect 8
new FAIL: gdb.compile/compile.exp: compute size of ulonger
new FAIL: gdb.compile/compile.exp: check size of ulonger
new FAIL: gdb.compile/compile.exp: compute size of longer
new FAIL: gdb.compile/compile.exp: check size of longer
new FAIL: gdb.compile/compile.exp: compile code globalvar = MINUS_1
new FAIL: gdb.compile/compile.exp: check MINUS_1
new FAIL: gdb.compile/compile.exp: compile code globalvar = static_local
new FAIL: gdb.compile/compile.exp: check static_local
new FAIL: gdb.compile/compile.exp: do not keep jit in memory
new FAIL: gdb.compile/compile.exp: compile code func_doesnotexist
new FAIL: gdb.compile/compile.exp: compile code segfault first
new FAIL: gdb.compile/compile.exp: bt
new FAIL: gdb.compile/compile.exp: info sym found
new FAIL: gdb.compile/compile.exp: return
new FAIL: gdb.compile/compile.exp: info sym not found
new FAIL: gdb.compile/compile.exp: compile code segfault second
new FAIL: gdb.compile/compile.exp: set localvar
new FAIL: gdb.compile/compile.exp: expect 12
new FAIL: gdb.compile/compile.exp: modify localvar
new FAIL: gdb.compile/compile.exp: expect 24
new FAIL: gdb.compile/compile.exp: test shadowing
new FAIL: gdb.compile/compile.exp: expect 52
new FAIL: gdb.compile/compile.exp: compile code localvar = externed
new FAIL: gdb.compile/compile.exp: test extern in inner scope
new FAIL: gdb.compile/compile.exp: compile code vla[2] = 7
new FAIL: gdb.compile/compile.exp: p vla[2]
new FAIL: gdb.compile/compile.exp: compile code localvar =
new FAIL: gdb.compile/compile.exp: p localvar
new FAIL: gdb.compile/compile.exp: compile code struct_object.selffield = &struct_object
new FAIL: gdb.compile/compile.exp: print struct_object.selffield == &struct_object
new FAIL: gdb.compile/compile.exp: compile code struct_object.charfield = 1
new FAIL: gdb.compile/compile.exp: print struct_object.charfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.ucharfield = 1
new FAIL: gdb.compile/compile.exp: print struct_object.ucharfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.shortfield = -5
new FAIL: gdb.compile/compile.exp: print struct_object.shortfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.ushortfield = 5
new FAIL: gdb.compile/compile.exp: print struct_object.ushortfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.intfield = -7
new FAIL: gdb.compile/compile.exp: print struct_object.intfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.uintfield = 7
new FAIL: gdb.compile/compile.exp: print struct_object.uintfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.bitfield = 2
new FAIL: gdb.compile/compile.exp: print struct_object.bitfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.longfield = -9
new FAIL: gdb.compile/compile.exp: print struct_object.longfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.ulongfield = 9
new FAIL: gdb.compile/compile.exp: print struct_object.ulongfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.enumfield = ONE
new FAIL: gdb.compile/compile.exp: print struct_object.enumfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.floatfield = 1
new FAIL: gdb.compile/compile.exp: print struct_object.floatfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.doublefield = 2
new FAIL: gdb.compile/compile.exp: print struct_object.doublefield
new FAIL: gdb.compile/compile.exp: compile code struct_object.arrayfield[2] = 7
new FAIL: gdb.compile/compile.exp: print struct_object.arrayfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.complexfield = 7 + 5i
new FAIL: gdb.compile/compile.exp: print struct_object.complexfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.boolfield = 1
new FAIL: gdb.compile/compile.exp: print struct_object.boolfield
new FAIL: gdb.compile/compile.exp: compile code struct_object.vectorfield[2] = 7
new FAIL: gdb.compile/compile.exp: print struct_object.vectorfield
new FAIL: gdb.compile/compile.exp: compile code union_object.typedeffield = 7
new FAIL: gdb.compile/compile.exp: print union_object.typedeffield
new FAIL: gdb.compile/compile.exp: print union_object.intfield
new FAIL: gdb.compile/compile.exp: print unresolved value
new FAIL: gdb.compile/compile.exp: compile code globalshadow += 1;
new FAIL: gdb.compile/compile.exp: print globalshadow
new FAIL: gdb.compile/compile.exp: compile code extern int globalshadow; globalshadow += 5;
new FAIL: gdb.compile/compile.exp: print 'compile.c'::globalshadow
new FAIL: gdb.compile/compile.exp: print globalshadow second time
new FAIL: gdb.compile/compile.exp: compile code staticshadow += 2;
new FAIL: gdb.compile/compile.exp: print staticshadow
new FAIL: gdb.compile/compile.exp: compile code -r multiline 4
new FAIL: gdb.compile/compile.exp: check globalshadow with -r
new FAIL: gdb.compile/compile.exp: pointer to jit function
new FAIL: gdb.compile/compile.exp: set variable to 77
new FAIL: gdb.compile/compile.exp: expect 77
new FAIL: gdb.compile/compile.exp: call func_nodebug
new FAIL: gdb.compile/compile.exp: expect -75
new FAIL: gdb.compile/compile.exp: call func_nodebug indirectly
new FAIL: gdb.compile/compile.exp: expect -76
new FAIL: gdb.compile/compile.exp: compile code static const int readonly = 1; *
new FAIL: gdb.compile/compile.exp: compile code union union_type newdecl_u
new FAIL: gdb.compile/compile.exp: compile code struct struct_type newdecl_s
new FAIL: gdb.compile/compile.exp: compile code inttypedef newdecl_i
new FAIL: gdb.compile/compile.exp: call shared library function
new FAIL: gdb.compile/compile.exp: expect 1
new FAIL: gdb.compile/compile.exp: modify shared library variable
new FAIL: gdb.compile/compile.exp: expect 15
new FAIL: gdb.compile/compile-ifunc.exp: nodebug: compile code resultvar = gnu_ifunc
new FAIL: gdb.compile/compile-ifunc.exp: nodebug: p resultvar
new FAIL: gdb.compile/compile-ifunc.exp: debug: compile code resultvar = gnu_ifunc_alias
new FAIL: gdb.compile/compile-ifunc.exp: debug: p resultvar
new FAIL: gdb.compile/compile-ops.exp: compile code
new FAIL: gdb.compile/compile-ops.exp: compile code optimized_out
new FAIL: gdb.compile/compile-print.exp: compile print varint
new FAIL: gdb.compile/compile-print.exp: compile print vararray
new FAIL: gdb.compile/compile-print.exp: compile print main
new FAIL: gdb.compile/compile-print.exp: compile print *vararray@3
new FAIL: gdb.compile/compile-print.exp: compile print *vararrayp@3
new FAIL: gdb.compile/compile-print.exp: compile print/x 256
new FAIL: gdb.compile/compile-print.exp: print $
new FAIL: gdb.compile/compile-print.exp: compile print varobject
new FAIL: gdb.compile/compile-setjmp.exp: compile file -r
new FAIL: gdb.compile/compile-setjmp.exp: p done
new FAIL: gdb.compile/compile-tls.exp: compile code local_scope = 1
new FAIL: gdb.compile/compile-tls.exp: print local_scope
new FAIL: gdb.compile/compile-tls.exp: compile code static_scope = 2
new FAIL: gdb.compile/compile-tls.exp: print static_scope
new FAIL: gdb.compile/compile-tls.exp: compile code global_scope = 3
new FAIL: gdb.compile/compile-tls.exp: print global_scope
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.go/hello.exp: String after assignment check
new FAIL: gdb.go/methods.exp: setting breakpoint at main.T.Foo
new FAIL: gdb.go/methods.exp: setting breakpoint at
new FAIL: gdb.guile/scm-breakpoint.exp: test_watchpoints: test watchpoint write
new FAIL: gdb.guile/scm-breakpoint.exp: test_bkpt_internal: test invisible watchpoint write
new FAIL: gdb.guile/scm-breakpoint.exp: test_bkpt_eval_funcs: test watchpoint write
new FAIL: gdb.guile/scm-symtab.exp: test find-pc-line with resume address
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-10-12 12:26 [binutils-gdb/gdb-7.12-branch] [AArch64] Track FP registers in prologue analyzer sergiodj+buildbot
@ 2016-10-12 13:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-10-12 13:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	8268cfa384409770cd6988e54b386ae286c0f3d1

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

Subject:
	[AArch64] Track FP registers in prologue analyzer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8268cfa384409770cd6988e54b386ae286c0f3d1>





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

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-10-07 18:04 [binutils-gdb/gdb-7.12-branch] Bump GDB version number to 7.12.0.DATE-git sergiodj+buildbot
@ 2016-10-09  6:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-10-09  6:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	856c9a7506cb86bedeb1402f03266b5b6fb2c431

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

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

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=1a38350dc477f5ec9d73d607b9c985473ca90f16>

*** Internal error on buildslave (no space left on device). ***
*** Please report this to the buildslave owner (see <http://gdb-build.sergiodj.net//buildslaves/fedora-ppc64be-1>) ***

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint-ns.exp: info checkpoints with at least 600 checkpoints
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-10-06 21:39 [binutils-gdb/gdb-7.12-branch] frame.h: Forward-declare struct ui_out sergiodj+buildbot
@ 2016-10-08  5:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-10-08  5:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	f2ddf8f6caffc513751ebfb3608c3a453aed5103

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

Subject:
	frame.h: Forward-declare struct ui_out

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=5c858da5098ee15422d50d496b9673581c8aa75f>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/ext-run.exp: get process list
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-09-07  3:24 [binutils-gdb/gdb-7.12-branch] new-ui command: gdb internal errors if input is already pending sergiodj+buildbot
@ 2016-09-08 21:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-09-08 21:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	f9a7ee181f7500b2f87687bf0c72b4b963e06acb

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

Subject:
	new-ui command: gdb internal errors if input is already pending

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=4a7272b4be0f94d3671a5bade0e68783fd3ab4a8>

*** Internal error on buildslave (no space left on device). ***
*** Please report this to the buildslave owner (see <http://gdb-build.sergiodj.net//buildslaves/fedora-ppc64be-1>) ***

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-09-07  2:09 [binutils-gdb/gdb-7.12-branch] Introduce make_cleanup_restore_current_ui sergiodj+buildbot
@ 2016-09-07 20:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-09-07 20:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	751b0f7dcfee83f60c1224790b9665c92be50fd8

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

Subject:
	Introduce make_cleanup_restore_current_ui

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 751b0f7dcfee83f60c1224790b9665c92be50fd8>





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

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-09-01  8:54 [binutils-gdb/gdb-7.12-branch] Fix lwp_suspend/unsuspend imbalance in linux_wait_1 sergiodj+buildbot
@ 2016-09-01 20:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-09-01 20:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	305a161d11c4b5801a0e135fec5d77f3d64f121f

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Fix lwp_suspend/unsuspend imbalance in linux_wait_1

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=6a1e405f39033e60087284712c7289a74e2c7ad4>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 two
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-26 19:14 [binutils-gdb/gdb-7.12-branch] xtensa: Avoid designated inits, for C++ compliance sergiodj+buildbot
@ 2016-08-29 14:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-29 14:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	e529eb722d213875230dbcd0c856390f840f1863

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	xtensa: Avoid designated inits, for C++ compliance

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=e621ce2e071b4e3738c2f40f32482ca0eeed5cad>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-25 13:07 [binutils-gdb/gdb-7.12-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
@ 2016-08-25 23:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 23:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	f2f45a7252a4bd977c135cc77536cbc0e9669cf2

Author(s) (in the same order as the commits):
	Adhemerval Zanella <adhemerval.zanella@linaro.org>

Subject:
	Sync proc_service definition with GLIBC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=efd1930d8926e99a640057931e3ad2f10b98ed5d>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 4 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-24 22:31 [binutils-gdb/gdb-7.12-branch] Allow resetting an empty inferior-tty sergiodj+buildbot
@ 2016-08-25  9:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-25  9:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	2b3eaab2c3eadd12bbd56499c00dca8cefb81552

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

Subject:
	Allow resetting an empty inferior-tty

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=f03cda8df4bbebb4d2483edc6e007b343066d369>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 3 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-24  3:01 [binutils-gdb/gdb-7.12-branch] x32: gdbserver's agent bytecode JIT: fix "call" emission sergiodj+buildbot
@ 2016-08-24 18:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-24 18:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	7b42e25f7cac78821b6efea2890fe725c59250fc

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

Subject:
	x32: gdbserver's agent bytecode JIT: fix "call" emission

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=853b80af242d5fc666b678a1c0f3fe26c1d4e323>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 3 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-24  1:34 [binutils-gdb/gdb-7.12-branch] x32 Fast tracepoints: Customize jump pad address sergiodj+buildbot
@ 2016-08-24 17:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-24 17:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	69389fd9fba29ab078f63d366612028fd1de25ab

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

Subject:
	x32 Fast tracepoints: Customize jump pad address

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=b5aea5e41d065a962eda313ce90994b3c8bee7d3>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-23 17:02 [binutils-gdb/gdb-7.12-branch] Fix signals-state-child.exp in remote testing sergiodj+buildbot
@ 2016-08-24  0:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-24  0:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	22dc25f77bdff5954af60abd7a098ea6e76ad1f9

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

Subject:
	Fix signals-state-child.exp in remote testing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=3e13a9f3ffe5bc9cfe877aea6ac77d3d88f7df5d>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-19 19:27 [binutils-gdb/gdb-7.12-branch] null-terminate string in linespec_location_completer sergiodj+buildbot
@ 2016-08-22 13:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-22 13:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	d71004b8fe2ab0f3e1fc6dede74821f7c287f521

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

Subject:
	null-terminate string in linespec_location_completer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=cdd83ea65767e9e2a56cfe128e4439d9787baa53>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-15 15:08 [binutils-gdb/gdb-7.12-branch] Fix heap-buffer-overflow in explicit_location_lex_one sergiodj+buildbot
@ 2016-08-16 14:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-16 14:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	23d4200c35e9325436f8bb3f9382dd5e4847a21f

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

Subject:
	Fix heap-buffer-overflow in explicit_location_lex_one

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=b57fa0fd98588e30a373b1d812311762bd000d45>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-12 15:06 [binutils-gdb/gdb-7.12-branch] Fix warning in gdb.base/signals-state-child.c sergiodj+buildbot
@ 2016-08-13 21:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-13 21:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	c0c8e5aea12c938a1e73c1d32912b094c3329288

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

Subject:
	Fix warning in gdb.base/signals-state-child.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=7e2e6cd0e2ded649ffdabdd150731f8476fbbd94>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 3 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-11  3:36 [binutils-gdb/gdb-7.12-branch] Plumb enum remove_bp_reason all the way to target_remove_breakpoint sergiodj+buildbot
@ 2016-08-12  1:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-12  1:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	aac9c6220f36cea74d13cd02cce6c64d49f41f34

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

Subject:
	Plumb enum remove_bp_reason all the way to target_remove_breakpoint

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=98dd09060fe2472186da07f931c8e8c5ccc5278f>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-11  1:57 [binutils-gdb/gdb-7.12-branch] Simplify remove_breakpoint interface sergiodj+buildbot
@ 2016-08-11 18:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-11 18:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	7c50accb20e77971c775fdb7f5f1bfa605397e80

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

Subject:
	Simplify remove_breakpoint interface

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=092a24e867de197be96a42c639f4f39f8b6aa571>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-10 19:27 [binutils-gdb/gdb-7.12-branch] Quiet ARI gettext checks sergiodj+buildbot
@ 2016-08-10 23:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-10 23:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	9be00a778d646d92b7940d74425b58d93cb73d0d

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

Subject:
	Quiet ARI gettext checks

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=b80eea5045852f47d6449eb818044a8f13678167>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/auxv.exp: continue
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
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-10  2:14 [binutils-gdb/gdb-7.12-branch] Fix PR mi/20431 - Missing MI prompts after sync execution MI command (-exec-continue, etc.) errors sergiodj+buildbot
@ 2016-08-10 17:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-10 17:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	4d38db46f6f6480ee33844164383ce40e5fc2440

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

Subject:
	Fix PR mi/20431 - Missing MI prompts after sync execution MI command (-exec-continue, etc.) errors

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=64ba3eb6ccc78e553f1133e982922083a5b36d79>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-09 22:55 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/18653: gdb disturbs inferior's inherited signal dispositions sergiodj+buildbot
@ 2016-08-10  6:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-10  6:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	35fcb4fc81e51295d14125785765e0ea3e132cd9

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

Subject:
	Fix PR gdb/18653: gdb disturbs inferior's inherited signal dispositions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=d1e154c169ed8282fef28e60078d59fcea067c4b>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 4 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-09 16:53 [binutils-gdb/gdb-7.12-branch] Synchronize libiberty sources with FSF GCC mainline version sergiodj+buildbot
@ 2016-08-09 22:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 22:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	1b6ec8ead3bce335087d6a2a6dc92c3d80d57a98

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Synchronize libiberty sources with FSF GCC mainline version.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=81aa7990895f39415f8aa13af3bd60e2b0021604>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-05 17:24 [binutils-gdb/gdb-7.12-branch] gdb/configure --help: suggest --disable-build-with-cxx instead of --enable sergiodj+buildbot
@ 2016-08-05 22:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-05 22:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	2b8c86008c05d4ca21971fe4f680288cd28108c1

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

Subject:
	gdb/configure --help: suggest --disable-build-with-cxx instead of --enable...

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=2a0aecabbb39472fe707f532dedfc2a73f1f7e74>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 3 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-04 11:11 [binutils-gdb/gdb-7.12-branch] Quiet ptrace error ESRCH in regsets_fetch_inferior_registers sergiodj+buildbot
@ 2016-08-04 15:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-04 15:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	367ed8910ee791720f99a28ad0320f430bd910d9

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

Subject:
	Quiet ptrace error ESRCH in regsets_fetch_inferior_registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=aff3d2c056fba69b668f437ffb84c0e8a994178a>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-01 19:25 [binutils-gdb/gdb-7.12-branch] Bump GDB version number to 7.11.90.DATE-git sergiodj+buildbot
@ 2016-08-02 11:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-02 11:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	7ff72836aecd3e64f3d5ef4e5e444c82ad2c7086

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

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

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=87ecf3a548231521f8fbdda3fbf2b157a28e8591>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** 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] 51+ messages in thread

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch
  2016-08-01 18:28 [binutils-gdb/gdb-7.12-branch] gdb/NEWS: rename "since GDB 7.11" into "in GDB 7.12" sergiodj+buildbot
@ 2016-08-02  6:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 51+ messages in thread
From: sergiodj+buildbot @ 2016-08-02  6:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	ad08bd595b31907b8cd414fa900055bacd68e112

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

Subject:
	gdb/NEWS: rename "since GDB 7.11" into "in GDB 7.12".

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64be-cc-with-index/.git/tree/?h=gdb-7.12-branch&id=fba996b14e4e31ad057bd8daf996966d9d83b807>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 3 one
============================


*** 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] 51+ messages in thread

end of thread, other threads:[~2017-01-01 17:09 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-09 15:04 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
2016-08-09 14:34 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.12-branch sergiodj+buildbot
2016-08-09 15:34 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2016-08-09 15:36 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2016-08-09 16:01 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
2016-08-09 16:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 16:17 ` Failures on Debian-i686, " sergiodj+buildbot
2016-08-09 16:31 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
2016-08-09 17:38 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 19:34 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-08-09 19:40 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
2016-08-09 19:40 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2016-08-09 20:15 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
2016-08-09 20:16 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
2016-08-09 20:18 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
2016-08-09 20:20 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 20:33 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 20:50 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
2016-08-09 20:51 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
2016-08-11 11:53 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
  -- strict thread matches above, loose matches on Subject: below --
2017-01-01  8:58 [binutils-gdb/gdb-7.12-branch] update copyright year range in GDB files sergiodj+buildbot
2017-01-01 17:09 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-12-20 20:16 [binutils-gdb/gdb-7.12-branch] gdb: Fix C and C++03 builds sergiodj+buildbot
2016-12-23  9:08 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-12-09 17:42 [binutils-gdb/gdb-7.12-branch] Create tdep->rl78_psw_type lazily sergiodj+buildbot
2016-12-16 11:02 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-10-25  4:37 [binutils-gdb/gdb-7.12-branch] PR gdb/20653 - small cleanup in string_to_explicit_location sergiodj+buildbot
2016-10-25 16:05 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-10-25  3:26 [binutils-gdb/gdb-7.12-branch] [GDBserver] Fix conversion warning sergiodj+buildbot
2016-10-25 12:39 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-10-14  7:58 [binutils-gdb/gdb-7.12-branch] Include strings.h where available sergiodj+buildbot
2016-10-14 22:34 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-10-12 12:26 [binutils-gdb/gdb-7.12-branch] [AArch64] Track FP registers in prologue analyzer sergiodj+buildbot
2016-10-12 13:47 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-10-07 18:04 [binutils-gdb/gdb-7.12-branch] Bump GDB version number to 7.12.0.DATE-git sergiodj+buildbot
2016-10-09  6:41 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-10-06 21:39 [binutils-gdb/gdb-7.12-branch] frame.h: Forward-declare struct ui_out sergiodj+buildbot
2016-10-08  5:50 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-09-07  3:24 [binutils-gdb/gdb-7.12-branch] new-ui command: gdb internal errors if input is already pending sergiodj+buildbot
2016-09-08 21:41 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-09-07  2:09 [binutils-gdb/gdb-7.12-branch] Introduce make_cleanup_restore_current_ui sergiodj+buildbot
2016-09-07 20:42 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-09-01  8:54 [binutils-gdb/gdb-7.12-branch] Fix lwp_suspend/unsuspend imbalance in linux_wait_1 sergiodj+buildbot
2016-09-01 20:37 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-26 19:14 [binutils-gdb/gdb-7.12-branch] xtensa: Avoid designated inits, for C++ compliance sergiodj+buildbot
2016-08-29 14:57 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-25 13:07 [binutils-gdb/gdb-7.12-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
2016-08-25 23:50 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-24 22:31 [binutils-gdb/gdb-7.12-branch] Allow resetting an empty inferior-tty sergiodj+buildbot
2016-08-25  9:42 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-24  3:01 [binutils-gdb/gdb-7.12-branch] x32: gdbserver's agent bytecode JIT: fix "call" emission sergiodj+buildbot
2016-08-24 18:18 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-24  1:34 [binutils-gdb/gdb-7.12-branch] x32 Fast tracepoints: Customize jump pad address sergiodj+buildbot
2016-08-24 17:28 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-23 17:02 [binutils-gdb/gdb-7.12-branch] Fix signals-state-child.exp in remote testing sergiodj+buildbot
2016-08-24  0:34 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-19 19:27 [binutils-gdb/gdb-7.12-branch] null-terminate string in linespec_location_completer sergiodj+buildbot
2016-08-22 13:40 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-15 15:08 [binutils-gdb/gdb-7.12-branch] Fix heap-buffer-overflow in explicit_location_lex_one sergiodj+buildbot
2016-08-16 14:18 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-12 15:06 [binutils-gdb/gdb-7.12-branch] Fix warning in gdb.base/signals-state-child.c sergiodj+buildbot
2016-08-13 21:36 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-11  3:36 [binutils-gdb/gdb-7.12-branch] Plumb enum remove_bp_reason all the way to target_remove_breakpoint sergiodj+buildbot
2016-08-12  1:41 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-11  1:57 [binutils-gdb/gdb-7.12-branch] Simplify remove_breakpoint interface sergiodj+buildbot
2016-08-11 18:49 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-10 19:27 [binutils-gdb/gdb-7.12-branch] Quiet ARI gettext checks sergiodj+buildbot
2016-08-10 23:45 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-10  2:14 [binutils-gdb/gdb-7.12-branch] Fix PR mi/20431 - Missing MI prompts after sync execution MI command (-exec-continue, etc.) errors sergiodj+buildbot
2016-08-10 17:23 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-09 22:55 [binutils-gdb/gdb-7.12-branch] Fix PR gdb/18653: gdb disturbs inferior's inherited signal dispositions sergiodj+buildbot
2016-08-10  6:39 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-09 16:53 [binutils-gdb/gdb-7.12-branch] Synchronize libiberty sources with FSF GCC mainline version sergiodj+buildbot
2016-08-09 22:10 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-05 17:24 [binutils-gdb/gdb-7.12-branch] gdb/configure --help: suggest --disable-build-with-cxx instead of --enable sergiodj+buildbot
2016-08-05 22:04 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-04 11:11 [binutils-gdb/gdb-7.12-branch] Quiet ptrace error ESRCH in regsets_fetch_inferior_registers sergiodj+buildbot
2016-08-04 15:47 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-01 19:25 [binutils-gdb/gdb-7.12-branch] Bump GDB version number to 7.11.90.DATE-git sergiodj+buildbot
2016-08-02 11:17 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-branch sergiodj+buildbot
2016-08-01 18:28 [binutils-gdb/gdb-7.12-branch] gdb/NEWS: rename "since GDB 7.11" into "in GDB 7.12" sergiodj+buildbot
2016-08-02  6:10 ` Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.12-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).