public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Debian-s390x-native-gdbserver-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
@ 2016-08-09 13:29 ` sergiodj+buildbot
  2016-08-09 13:50 ` Failures on Debian-i686, " sergiodj+buildbot
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 13:29 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/2744>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=473b393311e3b9a41397e344fd424ad7de07f050>

*** 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
============================


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-s390x-native-gdbserver-m64/xfails/master/xfail;hb=dac9c05>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-s390x-native-gdbserver-m64/xfails/master/xfail.table;hb=dac9c05>




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

* [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value
@ 2016-08-09 13:36 sergiodj+buildbot
  2016-08-09 13:29 ` Failures on Debian-s390x-native-gdbserver-m64, branch master sergiodj+buildbot
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 13:36 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT e5ca03b41d2c94919d5cb59d8d7adad98c29d156 ***

Author: Pedro Alves <palves@redhat.com>
Branch: master
Commit: e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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

* Failures on Debian-i686, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
  2016-08-09 13:29 ` Failures on Debian-s390x-native-gdbserver-m64, branch master sergiodj+buildbot
@ 2016-08-09 13:50 ` sergiodj+buildbot
  2016-08-09 13:52 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 13:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-i686

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

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=1889172e648e6199bb64eb9a9403a4f2c02e4557>

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


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686/xfails/master/xfail;hb=b49a91b>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686/xfails/master/xfail.table;hb=b49a91b>




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

* Failures on Fedora-ppc64be-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
  2016-08-09 13:29 ` Failures on Debian-s390x-native-gdbserver-m64, branch master sergiodj+buildbot
  2016-08-09 13:50 ` Failures on Debian-i686, " sergiodj+buildbot
@ 2016-08-09 13:52 ` sergiodj+buildbot
  2016-08-09 14:05 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 13:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=42590ca9f02ee038183fc8876a148cd1e155884f>

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


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-ppc64be-m64/xfails/master/xfail;hb=ebc6182>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-ppc64be-m64/xfails/master/xfail.table;hb=ebc6182>




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

* Failures on Debian-s390x-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2016-08-09 13:52 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
@ 2016-08-09 14:05 ` sergiodj+buildbot
  2016-08-09 15:15 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 14:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	debian-jessie-s390x-1

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

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=d3939ddccf650dc0a48f9cae7a799e345cfa5d93>

*** Diff to previous build ***
============================
new FAIL: gdb.dwarf2/bitfield-parent-optimized-out.exp: p var.bitfield
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process
new 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/watchthreads.exp: threaded watch loop
PASS -> FAIL: gdb.threads/watchthreads.exp: combination of threaded watchpoints = 30
============================


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-s390x-m64/xfails/master/xfail;hb=9d649f2>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-s390x-m64/xfails/master/xfail.table;hb=9d649f2>




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

* Failures on Debian-i686-native-extended-gdbserver, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2016-08-09 14:05 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
@ 2016-08-09 15:15 ` sergiodj+buildbot
  2016-08-09 15:34 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 15:15 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/3919>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=e02142e7270712873c27d0d5cd21e42c20ad0750>

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


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686-native-extended-gdbserver/xfails/master/xfail;hb=b49a91b>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-i686-native-extended-gdbserver/xfails/master/xfail.table;hb=b49a91b>




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

* Failures on Debian-s390x-native-extended-gdbserver-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2016-08-09 15:15 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
@ 2016-08-09 15:34 ` sergiodj+buildbot
  2016-08-09 15:38 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 15:34 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/2751>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=8fcc05558729172d9e3e4bb944aeccf333a18b82>

*** 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
PASS -> FAIL: gdb.python/py-finish-breakpoint.exp: catch out of scope after exec
============================


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-s390x-native-extended-gdbserver-m64/xfails/master/xfail;hb=9112d6c>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Debian-s390x-native-extended-gdbserver-m64/xfails/master/xfail.table;hb=9112d6c>




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

* Failures on Fedora-ppc64be-native-gdbserver-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2016-08-09 15:34 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 15:38 ` sergiodj+buildbot
  2016-08-09 16:31 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 15:38 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/3979>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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 e5ca03b41d2c94919d5cb59d8d7adad98c29d156>





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

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

Buildslave:
	marist-fedora-s390x

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

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=b246537d736fdb4e7f0cc1bf4d2ffb5dba06275a>

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


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-s390x-m64/xfails/master/xfail;hb=425091c>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-s390x-m64/xfails/master/xfail.table;hb=425091c>




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

* Failures on Fedora-x86_64-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2016-08-09 16:31 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
@ 2016-08-09 16:42 ` sergiodj+buildbot
  2016-08-09 17:24 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 16:42 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/4115>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=bfdaad0fa9f0e71d241f0a7682342f36eb7eeedb>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
============================


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m64/xfails/master/xfail;hb=64d63d6>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-x86_64-m64/xfails/master/xfail.table;hb=64d63d6>




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

* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (8 preceding siblings ...)
  2016-08-09 16:42 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2016-08-09 17:24 ` sergiodj+buildbot
  2016-08-09 18:51 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 17:24 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/3921>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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 e5ca03b41d2c94919d5cb59d8d7adad98c29d156>

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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (9 preceding siblings ...)
  2016-08-09 17:24 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 18:51 ` sergiodj+buildbot
  2016-08-09 20:05 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
  2016-08-09 20:07 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 18:51 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/3987>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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 e5ca03b41d2c94919d5cb59d8d7adad98c29d156>





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

* Failures on Fedora-ppc64be-cc-with-index, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (10 preceding siblings ...)
  2016-08-09 18:51 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-09 20:05 ` sergiodj+buildbot
  2016-08-09 20:07 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20: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/3983>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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=master&id=889fcfa9ef5ded542c9dcefe1e87f9bd512fc917>

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


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

To obtain the list of XFAIL tests for this builder, go to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-ppc64be-cc-with-index/xfails/master/xfail;hb=0e441cc>

You can also see a pretty-printed version of the list, with more information
about each XFAIL, by going to:

	<http://git.sergiodj.net/?p=gdb-xfails.git;a=blob;f=xfails/Fedora-ppc64be-cc-with-index/xfails/master/xfail.table;hb=0e441cc>




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

* Failures on Fedora-ppc64le-native-gdbserver-m64, branch master
  2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
                   ` (11 preceding siblings ...)
  2016-08-09 20:05 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
@ 2016-08-09 20:07 ` sergiodj+buildbot
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 20:07 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/3908>

Commit(s) tested:
	e5ca03b41d2c94919d5cb59d8d7adad98c29d156

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 e5ca03b41d2c94919d5cb59d8d7adad98c29d156>

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

end of thread, other threads:[~2016-08-09 13:42 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-09 13:36 [binutils-gdb] Fix PR gdb/20295: GDB segfaults printing bitfield member of optimized out value sergiodj+buildbot
2016-08-09 13:29 ` Failures on Debian-s390x-native-gdbserver-m64, branch master sergiodj+buildbot
2016-08-09 13:50 ` Failures on Debian-i686, " sergiodj+buildbot
2016-08-09 13:52 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
2016-08-09 14:05 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
2016-08-09 15:15 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-08-09 15:34 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 15:38 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
2016-08-09 16:31 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
2016-08-09 16:42 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2016-08-09 17:24 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 18:51 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-09 20:05 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
2016-08-09 20:07 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " 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).