public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
@ 2016-08-25 17:42 ` sergiodj+buildbot
  2016-08-25 18:19 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 17:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-x86_64-native-gdbserver-m32/.git/tree/?h=gdb-7.11-branch&id=b67544c237925591cabcf98103f293ddcccfedea>

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


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

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




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

* [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC
@ 2016-08-25 17:45 sergiodj+buildbot
  2016-08-25 17:42 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.11-branch sergiodj+buildbot
                   ` (12 more replies)
  0 siblings, 13 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 17:45 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 140bf80050b34f0947b34dba93b830ea2bfc5040 ***

Author: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Branch: gdb-7.11-branch
Commit: 140bf80050b34f0947b34dba93b830ea2bfc5040

Sync proc_service definition with GLIBC

GLIBC BZ#20311 [1] proc_service.h install patch also remove 'const'
attributes from ps_get_thread_area and comment #15 discuss why to remove
the const attribute (basically since it a callback with the struct
ps_prochandle owned by the client it should be able to modify it if
it the case).

On default build this is not the issue and current g++ does not trigger
any issue with this mismatch declaration.  However, on some bootstrap
build configuration where gdbserver is build with gcc instead this
triggers:

error: conflicting types for 'ps_get_thread_area'

This patch fixes it by syncing the declaration with GLIBC.

[1] https://sourceware.org/bugzilla/show_bug.cgi?id=20311

gdb/ChangeLog:

2016-08-25  Adhemerval Zanella  <adhemerval.zanella@linaro.org>

	* aarch64-linux-nat.c (ps_get_thread_area): Remove const from
	struct ps_prochandle.
	* amd64-linux-nat.c (ps_get_thread_area): Likewise.
	* arm-linux-nat.c (ps_get_thread_area): Likewise.
	* gdb_proc_service.h (ps_get_thread_area): Likewise.
	* i386-linux-nat.c (ps_get_thread_area): Likewise.
	* m68klinux-nat.c (ps_get_thread_area): Likewise.
	* mips-linux-nat.c (ps_get_thread_area): Likewise.
	* nat/aarch64-linux.c (aarch64_ps_get_thread_area): Likewise.
	* nat/aarch64-linux.h (aarch64_ps_get_thread_area): Likewise.
	* xtensa-linux-nat.c (ps_get_thread_area): Likewise.

gdb/gdbserver/ChangeLog:

2016-08-25  Adhemerval Zanella  <adhemerval.zanella@linaro.org>

	PR server/20491
	* gdb_proc_service.h (ps_get_thread_area): Remove const from struct
	ps_prochandle.
	* linux-aarch64-low.c (ps_get_thread_area): Likewise.
	* linux-arm-low.c (ps_get_thread_area): Likewise.
	* linux-crisv32-low.c (ps_get_thread_area): Likewise.
	* linux-m68k-low.c (ps_get_thread_area): Likewise.
	* linux-mips-low.c (ps_get_thread_area): Likewise.
	* linux-nios2-low.c (ps_get_thread_area): Likewise.
	* linux-tic6x-low.c (ps_get_thread_area): Likewise.
	* linux-x86-low.c (ps_get_thread_area): Likewise.
	* linux-xtensa-low.c (ps_get_thread_area): Likewise.


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

* Failures on Fedora-x86_64-cc-with-index, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
  2016-08-25 17:42 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.11-branch sergiodj+buildbot
  2016-08-25 18:19 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
@ 2016-08-25 18:19 ` sergiodj+buildbot
  2016-08-25 18:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 18:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-x86_64-cc-with-index/.git/tree/?h=gdb-7.11-branch&id=e6b791a30276b37beaec37d5ac419e61bde2b14c>

*** Diff to previous build ***
============================
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] 14+ messages in thread

* Failures on Fedora-x86_64-native-extended-gdbserver-m32, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
  2016-08-25 17:42 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.11-branch sergiodj+buildbot
@ 2016-08-25 18:19 ` sergiodj+buildbot
  2016-08-25 18:19 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 18:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-x86_64-native-extended-gdbserver-m32/.git/tree/?h=gdb-7.11-branch&id=0c0b8eb539cfd5d1283acdd88dd54827189023ac>

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


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

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




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2016-08-25 18:19 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
@ 2016-08-25 18:27 ` sergiodj+buildbot
  2016-08-25 18:58 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 18:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-x86_64-native-extended-gdbserver-m64/.git/tree/?h=gdb-7.11-branch&id=31fa26d0255827b019fc9ca5e7fdb1bcf3a09cc9>

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


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

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




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

* Failures on Debian-s390x-native-gdbserver-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2016-08-25 18:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-25 18:58 ` sergiodj+buildbot
  2016-08-25 19:07 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 18:58 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/2842>

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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/Debian-s390x-native-gdbserver-m64/.git/tree/?h=gdb-7.11-branch&id=1afa8a024ac91029a93273f6b4c755daf4547027>

*** 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.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish
============================


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

* Failures on Ubuntu-AArch64-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2016-08-25 18:58 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-25 19:07 ` sergiodj+buildbot
  2016-08-25 19:15 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 19:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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/Ubuntu-AArch64-m64/.git/tree/?h=gdb-7.11-branch&id=1d60ca117d50c515613f52e006fb42e654ee5999>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/dso2dso.exp: next over call to sub2
PASS -> FAIL: gdb.base/jit.exp: one_jit_test-1: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit.exp: one_jit_test-2: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit.exp: attach: one_jit_test-2: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit.exp: attach: one_jit_test-2: break here 2: set var wait_for_gdb = 1
PASS -> FAIL: gdb.base/jit.exp: attach: one_jit_test-2: break here 2: detach
PASS -> FAIL: gdb.base/jit.exp: attach: one_jit_test-2: break here 2: attach
PASS -> FAIL: gdb.base/jit.exp: attach: one_jit_test-2: break here 2: set var wait_for_gdb = 0
PASS -> FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
PASS -> FAIL: gdb.gdb/selftest.exp: step into xmalloc call
PASS -> FAIL: gdb.reverse/finish-reverse-bkpt.exp: reverse-finish from void_func trips breakpoint at entry
PASS -> FAIL: gdb.reverse/finish-reverse-bkpt.exp: no spurious proceed after breakpoint stop
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: reverse-next over call trips user breakpoint at function entry
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/readv-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
============================


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

* Failures on Debian-s390x-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2016-08-25 19:07 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
@ 2016-08-25 19:15 ` sergiodj+buildbot
  2016-08-25 20:15 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 19:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	debian-jessie-s390x-1

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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/Debian-s390x-m64/.git/tree/?h=gdb-7.11-branch&id=3321e07e4d780fd9072ccc209403e941b88cce33>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================


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

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




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

* Failures on Debian-s390x-native-extended-gdbserver-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2016-08-25 19:15 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
@ 2016-08-25 20:15 ` sergiodj+buildbot
  2016-08-25 20:35 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 20:15 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/2849>

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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/Debian-s390x-native-extended-gdbserver-m64/.git/tree/?h=gdb-7.11-branch&id=ac35b9ff6de24e07e9c55469d12b747f166d1894>

*** 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
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=1: detach_on_fork=on: displaced=off: inferior 1 exited
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish
============================


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

* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2016-08-25 20:15 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-25 20:35 ` sergiodj+buildbot
  2016-08-25 20:48 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 20:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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/Ubuntu-AArch64-native-gdbserver-m64/.git/tree/?h=gdb-7.11-branch&id=ad652ef3945138cca285b8d61ce40c473515d0dc>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe2
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe2 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called vfork
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: syscall vfork has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: ENOSYS: program has called 123456789
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: ENOSYS: syscall 123456789 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group
PASS -> FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit
PASS -> FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close
PASS -> FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe2
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe2 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit
PASS -> FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall
PASS -> FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot
PASS -> FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot
PASS -> FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit
PASS -> FAIL: gdb.base/catch-syscall.exp: skipping return: entry: program has called write
PASS -> FAIL: gdb.base/catch-syscall.exp: skipping return: entry/return: program has called read
PASS -> FAIL: gdb.base/catch-syscall.exp: skipping return: entry/return: syscall read has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: skipping return: entry/return: continue until exit
PASS -> FAIL: gdb.base/catch-syscall.exp: mid-vfork: continue until exit
PASS -> FAIL: gdb.base/catch-syscall.exp: execve: program has called execve
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 57
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 57 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 51
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 51 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe2: program has called 59
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe2: syscall 59 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 64
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 64 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 63
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 63 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called vfork
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: syscall vfork has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: ENOSYS: program has called 123456789
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: ENOSYS: syscall 123456789 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 94
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 57
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 57 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 51
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 51 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 59
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 59 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 64
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 64 has returned
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 63
PASS -> FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 63 has returned
PASS -> FAIL: gdb.base/jit.exp: one_jit_test-1: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit.exp: one_jit_test-2: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
PASS -> FAIL: gdb.reverse/finish-reverse-bkpt.exp: reverse-finish from void_func trips breakpoint at entry
PASS -> FAIL: gdb.reverse/finish-reverse-bkpt.exp: no spurious proceed after breakpoint stop
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: reverse-next over call trips user breakpoint at function entry
PASS -> FAIL: gdb.reverse/pipe-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/readv-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call
PASS -> FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.trace/change-loc.exp: 1 ftrace: tracepoint with two locations
PASS -> FAIL: gdb.trace/change-loc.exp: 1 ftrace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tstop
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 1 ftrace: tfind
PASS -> FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with two locations
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 1
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 2
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tracepoint with three locations
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: continue to marker 3
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tstop
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 0
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 1
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind frame 2
new FAIL: gdb.trace/change-loc.exp: 2 ftrace: tfind
new FAIL: gdb.trace/pending.exp: ftrace works: continue to marker
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 1
new FAIL: gdb.trace/pending.exp: ftrace works: tfind test frame 2
PASS -> FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace resolved_in_trace: tfind test frame 0
PASS -> FAIL: gdb.trace/pending.exp: ftrace action_resolved: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tfind test frame 0
new FAIL: gdb.trace/pending.exp: ftrace action_resolved: tdump
PASS -> FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: continue to marker 2
new FAIL: gdb.trace/pending.exp: ftrace installed_in_trace: tfind test frame 0
PASS -> FAIL: gdb.trace/trace-condition.exp: ftrace: -
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: print object on: print derived_whole
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: print object off: print derived_whole
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object on: print derived_whole
PASS -> FAIL: gdb.trace/unavailable.exp: collect globals: tfile: print object off: print derived_whole
============================


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

* Failures on Fedora-s390x-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (8 preceding siblings ...)
  2016-08-25 20:35 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-25 20:48 ` sergiodj+buildbot
  2016-08-25 21:43 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 20:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	marist-fedora-s390x

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

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-s390x-m64/.git/tree/?h=gdb-7.11-branch&id=82132ed3bb887a1b0b470264bd306e326ab9f526>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-syscall.exp: mid-vfork: syscall vfork has returned
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
PASS -> FAIL: gdb.base/siginfo-thread.exp: Extract si_errno
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] 14+ messages in thread

* Failures on Debian-i686-native-extended-gdbserver, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (9 preceding siblings ...)
  2016-08-25 20:48 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
@ 2016-08-25 21:43 ` sergiodj+buildbot
  2016-08-26 10:27 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
  2016-08-26 10:59 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-25 21:43 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/4015>

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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/Debian-i686-native-extended-gdbserver/.git/tree/?h=gdb-7.11-branch&id=6ded1e4ecdad5066bb3fa2e8a8b860cece4c79ec>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
============================


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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (10 preceding siblings ...)
  2016-08-25 21:43 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
@ 2016-08-26 10:27 ` sergiodj+buildbot
  2016-08-26 10:59 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-26 10:27 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/4085>

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-native-extended-gdbserver-m64/.git/tree/?h=gdb-7.11-branch&id=3013d9d015d762f4d60fb7b080f410e18d2afa5f>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/until-precsave.exp: run to end of main
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=off: no threads left
============================


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

* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch gdb-7.11-branch
  2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
                   ` (11 preceding siblings ...)
  2016-08-26 10:27 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-08-26 10:59 ` sergiodj+buildbot
  12 siblings, 0 replies; 14+ messages in thread
From: sergiodj+buildbot @ 2016-08-26 10:59 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/4019>

Commit(s) tested:
	140bf80050b34f0947b34dba93b830ea2bfc5040

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-ppc64le-native-extended-gdbserver-m64/.git/tree/?h=gdb-7.11-branch&id=12f70c33d2f9b359e730d571c53719dd03cc1c99>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: set breakpoint at marker1
============================


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

end of thread, other threads:[~2016-08-25 17:06 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-25 17:45 [binutils-gdb/gdb-7.11-branch] Sync proc_service definition with GLIBC sergiodj+buildbot
2016-08-25 17:42 ` Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.11-branch sergiodj+buildbot
2016-08-25 18:19 ` Failures on Fedora-x86_64-native-extended-gdbserver-m32, " sergiodj+buildbot
2016-08-25 18:19 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2016-08-25 18:27 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-25 18:58 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
2016-08-25 19:07 ` Failures on Ubuntu-AArch64-m64, " sergiodj+buildbot
2016-08-25 19:15 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
2016-08-25 20:15 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-25 20:35 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2016-08-25 20:48 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
2016-08-25 21:43 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-08-26 10:27 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-08-26 10:59 ` Failures on Fedora-ppc64le-native-extended-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).