public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Failures on Ubuntu-AArch64-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
@ 2016-09-19 16:31 ` sergiodj+buildbot
  2016-09-19 16:49 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
                   ` (22 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 16:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	ubuntu-aarch64-1

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


*** 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/Ubuntu-AArch64-m64/xfails/master/xfail;hb=>

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/Ubuntu-AArch64-m64/xfails/master/xfail.table;hb=>




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

* [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver
@ 2016-09-19 16:45 sergiodj+buildbot
  2016-09-19 16:31 ` Failures on Ubuntu-AArch64-m64, branch master sergiodj+buildbot
                   ` (23 more replies)
  0 siblings, 24 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 16:45 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6 ***

Author: Sergio Durigan Junior <sergiodj@redhat.com>
Branch: master
Commit: bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Consolidate target_mourn_inferior between GDB and gdbserver

This patch consolidates the API of target_mourn_inferior between GDB
and gdbserver, in my continuing efforts to make sharing the
fork_inferior function possible between both.

GDB's version of the function did not care about the inferior's ptid
being mourned, but gdbserver's needed to know this information.  Since
it actually makes sense to pass the ptid as an argument, instead of
depending on a global value directly (which GDB's version did), I
decided to make the generic API to accept it.  I then went on and
extended all calls being made on GDB to include a ptid argument (which
ended up being inferior_ptid most of the times, anyway), and now we
have a more sane interface.

On GDB's side, after talking to Pedro a bit about it, we decided that
just an assertion to make sure that the ptid being passed is equal to
inferior_ptid would be enough for now, on the GDB side.  We can remove
the assertion and perform more operations later if we ever pass
anything different than inferior_ptid.

Regression tested on our BuildBot, everything OK.

I'd appreciate a special look at gdb/windows-nat.c's modification
because I wasn't really sure what to do there.  It seemed to me that
maybe I should build a ptid out of the process information there, but
then I am almost sure the assertion on GDB's side would trigger.

gdb/ChangeLog:
2016-09-19  Sergio Durigan Junior  <sergiodj@redhat.com>

	* darwin-nat.c (darwin_kill_inferior): Adjusting call to
	target_mourn_inferior to include ptid_t argument.
	* fork-child.c (startup_inferior): Likewise.
	* gnu-nat.c (gnu_kill_inferior): Likewise.
	* inf-ptrace.c (inf_ptrace_kill): Likewise.
	* infrun.c (handle_inferior_event_1): Likewise.
	* linux-nat.c (linux_nat_attach): Likewise.
	(linux_nat_kill): Likewise.
	* nto-procfs.c (interrupt_query): Likewise.
	(procfs_interrupt): Likewise.
	(procfs_kill_inferior): Likewise.
	* procfs.c (procfs_kill_inferior): Likewise.
	* record.c (record_mourn_inferior): Likewise.
	* remote-sim.c (gdbsim_kill): Likewise.
	* remote.c (remote_detach_1): Likewise.
	(remote_kill): Likewise.
	* target.c (target_mourn_inferior): Change declaration to accept
	new ptid_t argument; use gdb_assert on it.
	* target.h (target_mourn_inferior): Move function prototype from
	here...
	* target/target.h (target_mourn_inferior): ... to here.  Adjust it
	to accept new ptid_t argument.
	* windows-nat.c (get_windows_debug_event): Adjusting call to
	target_mourn_inferior to include ptid_t argument.

gdb/gdbserver/ChangeLog:
2016-09-19  Sergio Durigan Junior  <sergiodj@redhat.com>

	* server.c (start_inferior): Call target_mourn_inferior instead of
	mourn_inferior; pass ptid_t argument to it.
	(resume): Likewise.
	(handle_target_event): Likewise.
	* target.c (target_mourn_inferior): New function.
	* target.h (mourn_inferior): Delete macro.


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

* Failures on Debian-s390x-native-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
  2016-09-19 16:31 ` Failures on Ubuntu-AArch64-m64, branch master sergiodj+buildbot
@ 2016-09-19 16:49 ` sergiodj+buildbot
  2016-09-19 16:50 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
                   ` (21 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 16:49 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/2933>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-s390x-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
  2016-09-19 16:31 ` Failures on Ubuntu-AArch64-m64, branch master sergiodj+buildbot
  2016-09-19 16:49 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-19 16:50 ` sergiodj+buildbot
  2016-09-19 17:00 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
                   ` (20 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 16:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	marist-fedora-s390x

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


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

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=321bcca>




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

* Failures on Debian-s390x-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (2 preceding siblings ...)
  2016-09-19 16:50 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
@ 2016-09-19 17:00 ` sergiodj+buildbot
  2016-09-19 17:06 ` Failures on Debian-i686, " sergiodj+buildbot
                   ` (19 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 17:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	debian-jessie-s390x-1

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/siginfo-thread.exp: Extract si_errno
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


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

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




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

* Failures on Debian-i686, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (3 preceding siblings ...)
  2016-09-19 17:00 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
@ 2016-09-19 17:06 ` sergiodj+buildbot
  2016-09-19 17:15 ` Failures on Debian-x86_64-m64, " sergiodj+buildbot
                   ` (18 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 17:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-i686

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: continue to breakpoint: run to breakpoint in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setup: unbreak loop in thread 2
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: continue to sigusr1_handler
PASS -> FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setup: continue to breakpoint: run to breakpoint in thread 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 ***

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

* Failures on Debian-x86_64-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (4 preceding siblings ...)
  2016-09-19 17:06 ` Failures on Debian-i686, " sergiodj+buildbot
@ 2016-09-19 17:15 ` sergiodj+buildbot
  2016-09-19 17:20 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
                   ` (17 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 17:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Debian-x86_64-m64/.git/tree/?h=master&id=e080e134f735fed366dc166f14a81789c0c7751a>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
XFAIL -> 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 ***

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-x86_64-m64/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-x86_64-m64/xfails/master/xfail.table;hb=b49a91b>




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

* Failures on Fedora-x86_64-m32, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (5 preceding siblings ...)
  2016-09-19 17:15 ` Failures on Debian-x86_64-m64, " sergiodj+buildbot
@ 2016-09-19 17:20 ` sergiodj+buildbot
  2016-09-19 17:29 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (16 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 17:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.ada/win_fu_syms.exp: compilation foo.adb
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


*** 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-m32/xfails/master/xfail;hb=fefa009>

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-m32/xfails/master/xfail.table;hb=fefa009>




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

* Failures on Ubuntu-AArch64-native-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (6 preceding siblings ...)
  2016-09-19 17:20 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
@ 2016-09-19 17:29 ` sergiodj+buildbot
  2016-09-19 18:37 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
                   ` (15 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 17:29 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/480>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-x86_64-cc-with-index, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (7 preceding siblings ...)
  2016-09-19 17:29 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-19 18:37 ` sergiodj+buildbot
  2016-09-19 19:21 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (14 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 18:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


*** 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-cc-with-index/xfails/master/xfail;hb=53259cc>

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-cc-with-index/xfails/master/xfail.table;hb=53259cc>




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

* Failures on Debian-s390x-native-extended-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (8 preceding siblings ...)
  2016-09-19 18:37 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
@ 2016-09-19 19:21 ` sergiodj+buildbot
  2016-09-19 20:45 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
                   ` (13 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 19:21 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/2940>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-x86_64-native-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (9 preceding siblings ...)
  2016-09-19 19:21 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-19 20:45 ` sergiodj+buildbot
  2016-09-19 21:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (12 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 20:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-3

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (10 preceding siblings ...)
  2016-09-19 20:45 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-19 21:14 ` sergiodj+buildbot
  2016-09-19 21:29 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
                   ` (11 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 21: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/4345>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Debian-i686-native-extended-gdbserver, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (11 preceding siblings ...)
  2016-09-19 21:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-19 21:29 ` sergiodj+buildbot
  2016-09-19 22:13 ` Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (10 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 21:29 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/4102>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

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

* Failures on Debian-x86_64-native-extended-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (12 preceding siblings ...)
  2016-09-19 21:29 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
@ 2016-09-19 22:13 ` sergiodj+buildbot
  2016-09-19 22:20 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
                   ` (9 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 22:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-x86_64

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-x86_64-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (13 preceding siblings ...)
  2016-09-19 22:13 ` Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-19 22:20 ` sergiodj+buildbot
  2016-09-19 22:54 ` Failures on Fedora-i686, " sergiodj+buildbot
                   ` (8 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 22:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-4

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


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

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=79ee032>




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

* Failures on Fedora-i686, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (14 preceding siblings ...)
  2016-09-19 22:20 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
@ 2016-09-19 22:54 ` sergiodj+buildbot
  2016-09-20 14:01 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
                   ` (7 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-19 22:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-1

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-i686/.git/tree/?h=master&id=110cd5271dcdd3e33a0f821df27c99098ec6ce06>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


*** 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-i686/xfails/master/xfail;hb=392e2de>

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-i686/xfails/master/xfail.table;hb=392e2de>




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

* Failures on Fedora-ppc64be-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (15 preceding siblings ...)
  2016-09-19 22:54 ` Failures on Fedora-i686, " sergiodj+buildbot
@ 2016-09-20 14:01 ` sergiodj+buildbot
  2016-09-20 16:01 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
                   ` (6 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 14:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64be-1

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


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

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=4be6f0a>




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

* Failures on Fedora-ppc64be-native-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (16 preceding siblings ...)
  2016-09-20 14:01 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
@ 2016-09-20 16:01 ` sergiodj+buildbot
  2016-09-20 16:18 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (5 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 16:01 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/4168>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (17 preceding siblings ...)
  2016-09-20 16:01 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-20 16:18 ` sergiodj+buildbot
  2016-09-20 16:19 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
                   ` (4 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 16:18 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/4177>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-ppc64be-cc-with-index, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (18 preceding siblings ...)
  2016-09-20 16:18 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-20 16:19 ` sergiodj+buildbot
  2016-09-20 17:02 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
                   ` (3 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 16:19 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/4173>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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=9c8d5a06515b12f921dd5724ff41a2ebb74df57c>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (19 preceding siblings ...)
  2016-09-20 16:19 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
@ 2016-09-20 17:02 ` sergiodj+buildbot
  2016-09-20 17:04 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
                   ` (2 subsequent siblings)
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 17:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ffd9045>

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-ppc64le-m64/xfails/master/xfail.table;hb=ffd9045>




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

* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (20 preceding siblings ...)
  2016-09-20 17:02 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
@ 2016-09-20 17:04 ` sergiodj+buildbot
  2016-09-20 17:08 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj+buildbot
  2016-09-20 17:17 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 17:04 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/4111>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-ppc64le-cc-with-index, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (21 preceding siblings ...)
  2016-09-20 17:04 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
@ 2016-09-20 17:08 ` sergiodj+buildbot
  2016-09-20 17:17 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 17:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-cc-with-index/.git/tree/?h=master&id=67b647f44a661439c75d099781a7901f4b6f09ea>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=main: mi=separate: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=main: force-fail=1: run failure detected
PASS -> FAIL: gdb.mi/mi-exec-run.exp: inferior-tty=separate: mi=separate: force-fail=1: run failure detected
============================


*** 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-ppc64le-cc-with-index/xfails/master/xfail;hb=75ad528>

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-ppc64le-cc-with-index/xfails/master/xfail.table;hb=75ad528>




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

* Failures on Fedora-ppc64le-native-gdbserver-m64, branch master
  2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
                   ` (22 preceding siblings ...)
  2016-09-20 17:08 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj+buildbot
@ 2016-09-20 17:17 ` sergiodj+buildbot
  23 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 17:17 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/4097>

Commit(s) tested:
	bc1e6c81d5b77d78282c47f6fd7f697e564a6eb6

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Consolidate target_mourn_inferior between GDB and gdbserver

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





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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-09 18:14 [binutils-gdb] Don't try building gdb against guile-2.2 sergiodj+buildbot
@ 2017-12-02  3:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-12-02  3:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6e66f7538112d2f5fb1af17dbde33ba37a7171be

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

Subject:
	Don't try building gdb against guile-2.2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6e/6e66f7538112d2f5fb1af17dbde33ba37a7171be/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: set architecture sparc:v8pluse
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=WindowsCE: arch=sparc:v8pluse: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: set osabi
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: set architecture rs6000:6000
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:6000: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: set architecture rs6000:rs1
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs1: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: set architecture rs6000:rs2
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rs2: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: set architecture rs6000:rsc
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rs6000:rsc: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: set architecture rx
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=rx: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: set architecture s390:31-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:31-bit: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: set architecture s390:64-bit
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=s390:64-bit: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: set architecture score3
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score3: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: set architecture score7
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: show endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=auto: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=big: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: ptype, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: print, long double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: ptype, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: print, double
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: ptype, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: print, float
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=score7: endian=little: disassemble 0x0,+4
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: set endian
new FAIL: gdb.base/all-architectures-6.exp: tests: osabi=auto: arch=sh: endian=auto: set architecture sh
PASS -> FAIL: gdb.base/all-architectures-6.exp: all passed
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set displaced-stepping off
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: stepi on breakpoint, skip handler, no handler: set itimer = itimer_real
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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

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

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-ppc64le-m64/xfails/master/xfail.table;hb=65c1d6c>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-09 17:56 [binutils-gdb] S/390: Sync with latest POP - 3 new instructions sergiodj+buildbot
@ 2017-11-29 10:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-29 10:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8e464506d2131fc931c4f81a22cc7125b7adf434

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

Subject:
	S/390: Sync with latest POP - 3 new instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8e/8e464506d2131fc931c4f81a22cc7125b7adf434/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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

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

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-ppc64le-m64/xfails/master/xfail.table;hb=65c1d6c>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-09 12:16 [binutils-gdb] Fix gdb.base/print-file-var-main.c value check logic sergiodj+buildbot
@ 2017-11-24  8:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-24  8:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5c9e4427a745e5e26fba320ecc62e4285b613e4f

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

Subject:
	Fix gdb.base/print-file-var-main.c value check logic

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5c/5c9e4427a745e5e26fba320ecc62e4285b613e4f/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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

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

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-ppc64le-m64/xfails/master/xfail.table;hb=65c1d6c>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-09  5:11 [binutils-gdb] PR22212, memory leak in nm sergiodj+buildbot
@ 2017-11-19  7:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-19  7:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b55ec8b676ed05d93ee49d6c79ae0403616c4fb0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR22212, memory leak in nm

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b5/b55ec8b676ed05d93ee49d6c79ae0403616c4fb0/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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

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

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-ppc64le-m64/xfails/master/xfail.table;hb=65c1d6c>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-07  0:08 [binutils-gdb] x86: Update UNDEFINED_WEAK_RESOLVED_TO_ZERO comments sergiodj+buildbot
@ 2017-11-12 23:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-12 23:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	99180bccaf09413c9ddb28e51fa30f1ca4966583

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Update UNDEFINED_WEAK_RESOLVED_TO_ZERO comments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/99/99180bccaf09413c9ddb28e51fa30f1ca4966583/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-07  1:04 [binutils-gdb] x86: Use zero_undefweak in elf_x86_link_hash_entry sergiodj+buildbot
@ 2017-11-12  2:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-12  2:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	98b273dc13b1e45db8c66821efc9e514884f3c25

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Use zero_undefweak in elf_x86_link_hash_entry

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/98/98b273dc13b1e45db8c66821efc9e514884f3c25/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.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
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 22:49 [binutils-gdb] Skip gdb.mi/mi-threads-interrupt.exp if nointerrupts sergiodj+buildbot
@ 2017-11-11  5:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-11  5:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b3b7c423883ad8d8b81f166ad2d2d4b637086bc0

Author(s) (in the same order as the commits):
	Sandra Loosemore <sandra@codesourcery.com>

Subject:
	Skip gdb.mi/mi-threads-interrupt.exp if nointerrupts.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b3/b3b7c423883ad8d8b81f166ad2d2d4b637086bc0/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 21:43 [binutils-gdb] Account for padding in FreeBSD/mipsn32 NT_PRSTATUS notes sergiodj+buildbot
@ 2017-11-10  9:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-10  9:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	544c67cda1686c1b204cb96c0d7885b08d37b8d6

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

Subject:
	Account for padding in FreeBSD/mipsn32 NT_PRSTATUS notes.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/54/544c67cda1686c1b204cb96c0d7885b08d37b8d6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 13:38 [binutils-gdb] Move arm.o arm-get-next-pcs.o arm-linux.o to arch/ sergiodj+buildbot
@ 2017-11-08 17:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-08 17:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	71917808c3490b4d4df9c6e848e3c5d75f5278d2

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

Subject:
	Move arm.o arm-get-next-pcs.o arm-linux.o to arch/

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/71/71917808c3490b4d4df9c6e848e3c5d75f5278d2/>

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


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 12:54 [binutils-gdb] Add "do/while(0); " to COPY_INPUT_RELOC_P/VERIFY_COPY_RELOC sergiodj+buildbot
@ 2017-11-06 21:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-06 21:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e0d8f43169368abf354e596c7725dee1dd609cb8

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add "do/while(0);" to COPY_INPUT_RELOC_P/VERIFY_COPY_RELOC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e0/e0d8f43169368abf354e596c7725dee1dd609cb8/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 11:06 [binutils-gdb] Fix more GDB build breakage on mingw32 sergiodj+buildbot
@ 2017-11-06  1:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-06  1:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a1b85d282f408dfd18a27539874846197f7e4044

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

Subject:
	Fix more GDB build breakage on mingw32

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a1/a1b85d282f408dfd18a27539874846197f7e4044/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 10:23 [binutils-gdb] Share code updating gdb_target_obs sergiodj+buildbot
@ 2017-11-02 19:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-02 19:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d97987e219b80c670e37eb0e25e31b36fa295509

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

Subject:
	Share code updating gdb_target_obs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d9/d97987e219b80c670e37eb0e25e31b36fa295509/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06 10:17 [binutils-gdb] [RFC] Replicate src dir in build dir sergiodj+buildbot
@ 2017-11-01 23:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-01 23:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f38307f593cb8189c82fb39e46e0cd899022e2fb

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

Subject:
	[RFC] Replicate src dir in build dir

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f3/f38307f593cb8189c82fb39e46e0cd899022e2fb/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06  9:53 [binutils-gdb] gdb: Fix decoding of ARM neon memory hint insns sergiodj+buildbot
@ 2017-11-01  1:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-11-01  1:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2f924de654ff8f719faf60b84948397809baaac6

Author(s) (in the same order as the commits):
	Jose E. Marchesi <jose.marchesi@oracle.com>

Subject:
	gdb: Fix decoding of ARM neon memory hint insns.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2f/2f924de654ff8f719faf60b84948397809baaac6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06  7:49 [binutils-gdb] x86: Add COPY_INPUT_RELOC_P sergiodj+buildbot
@ 2017-10-29 11:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-29 11:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e74399c47c76b8111651f41b52a05401852cf799

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Add COPY_INPUT_RELOC_P

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e7/e74399c47c76b8111651f41b52a05401852cf799/>

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


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06  7:36 [binutils-gdb] x86: Add GENERATE_RELATIVE_RELOC_P sergiodj+buildbot
@ 2017-10-26 22:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-26 22:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f70656b2604eff12cea2e9bef27c1e00a3077f30

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Add GENERATE_RELATIVE_RELOC_P

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f7/f70656b2604eff12cea2e9bef27c1e00a3077f30/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06  7:30 [binutils-gdb] Add RESOLVED_LOCALLY_P sergiodj+buildbot
@ 2017-10-26  1:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-26  1:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2eba97c207399d8b541092a7b0a4428dc02f5cf1

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add RESOLVED_LOCALLY_P

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2e/2eba97c207399d8b541092a7b0a4428dc02f5cf1/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06  7:26 [binutils-gdb] x86: Add NEED_DYNAMIC_RELOCATION_P sergiodj+buildbot
@ 2017-10-25  5:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-25  5:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	daf1c414a48baf090f005ce4b319b6881d5d6872

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Add NEED_DYNAMIC_RELOCATION_P

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/da/daf1c414a48baf090f005ce4b319b6881d5d6872/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-06  7:18 [binutils-gdb] x86: Add TLS_TRANSITION_IE_TO_LE_P sergiodj+buildbot
@ 2017-10-24  9:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-24  9:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	51537393bd939e79f6e9291629fb65a17e6f19da

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Add TLS_TRANSITION_IE_TO_LE_P

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/51/51537393bd939e79f6e9291629fb65a17e6f19da/>

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


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:35 [binutils-gdb] Fix fork-related regressions on GNU/Linux sergiodj+buildbot
@ 2017-10-22 17:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-22 17:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2fd9d7ca17539ce983862b25e0abc27cfb706189

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

Subject:
	Fix fork-related regressions on GNU/Linux

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2f/2fd9d7ca17539ce983862b25e0abc27cfb706189/>

*** Diff to previous build ***
============================
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:18 [binutils-gdb] Remove unused "union agent_val" from ax.h sergiodj+buildbot
@ 2017-10-21 20:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-21 20:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d13b8493cbd2891b5886e6176d468eb63c73606a

Author(s) (in the same order as the commits):
	Ulrich Weigand <ulrich.weigand@de.ibm.com>

Subject:
	Remove unused "union agent_val" from ax.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d1/d13b8493cbd2891b5886e6176d468eb63c73606a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:18 [binutils-gdb] Clean up some DFP interfaces sergiodj+buildbot
@ 2017-10-20 21:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-20 21:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3b4b2f160d288b85a1379d24fd0f4de19062f3fd

Author(s) (in the same order as the commits):
	Ulrich Weigand <ulrich.weigand@de.ibm.com>

Subject:
	Clean up some DFP interfaces

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3b/3b4b2f160d288b85a1379d24fd0f4de19062f3fd/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:18 [binutils-gdb] Clean up includes of doublest.h and floatformat.h sergiodj+buildbot
@ 2017-10-20  0:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-20  0:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1841ee5d0300cf00022c8aadfe16725c5e86fe1d

Author(s) (in the same order as the commits):
	Ulrich Weigand <ulrich.weigand@de.ibm.com>

Subject:
	Clean up includes of doublest.h and floatformat.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/18/1841ee5d0300cf00022c8aadfe16725c5e86fe1d/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: continue &
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:00 [binutils-gdb] Add a signal frame unwinder for FreeBSD/mipsn32 sergiodj+buildbot
@ 2017-10-19  2:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-19  2:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a80a647180bf92692e0f01efe7b323afe7d317c9

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

Subject:
	Add a signal frame unwinder for FreeBSD/mipsn32.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a8/a80a647180bf92692e0f01efe7b323afe7d317c9/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:00 [binutils-gdb] Handle the NT_ARM_VFP core dump note on FreeBSD sergiodj+buildbot
@ 2017-10-18  3:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-18  3:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6d5be5d6b8b4412e65bc037472aa2e727c25ccf5

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

Subject:
	Handle the NT_ARM_VFP core dump note on FreeBSD.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6d/6d5be5d6b8b4412e65bc037472aa2e727c25ccf5/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 17:00 [binutils-gdb] Handle FreeBSD-specific AT_EHDRFLAGS and AT_HWCAP auxiliary vector types sergiodj+buildbot
@ 2017-10-17  6:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-17  6:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	12c4bd7f53e9cefcf7c3a7f8cbf9e552526cb963

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

Subject:
	Handle FreeBSD-specific AT_EHDRFLAGS and AT_HWCAP auxiliary vector types.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/12/12c4bd7f53e9cefcf7c3a7f8cbf9e552526cb963/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: continue &
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05 13:02 [binutils-gdb] tile: Dump dynamic relocation info to the map file sergiodj+buildbot
@ 2017-10-16  9:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-16  9:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	007873f54e41eaef2f7a89b8adbb63a563d98b65

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	tile: Dump dynamic relocation info to the map file

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/00/007873f54e41eaef2f7a89b8adbb63a563d98b65/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05  4:45 [binutils-gdb] Update my email address sergiodj+buildbot
@ 2017-10-15  8:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-15  8:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c91933e9e33654c7b8973cb449b93f5152afcbcb

Author(s) (in the same order as the commits):
	Tristan Gingold <tgingold@free.fr>

Subject:
	Update my email address.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c9/c91933e9e33654c7b8973cb449b93f5152afcbcb/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: continue &
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05  1:42 [binutils-gdb] bfd_set_input_error sergiodj+buildbot
@ 2017-10-14 12:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-14 12:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2ca7de3746be7484aa5affceafa1ad2e1d789381

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

Subject:
	bfd_set_input_error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2c/2ca7de3746be7484aa5affceafa1ad2e1d789381/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
PASS -> FAIL: gdb.mi/list-thread-groups-available.exp: list available thread groups
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-05  1:09 [binutils-gdb] bfd_error_on_input is for archives sergiodj+buildbot
@ 2017-10-13 15:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-13 15:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8c6716e57eb991ba6ceb07011045d626652aaf01

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	bfd_error_on_input is for archives

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8c/8c6716e57eb991ba6ceb07011045d626652aaf01/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: cli exit after run cmd: run command run
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: cli exit after run cmd: terminal settings preserved
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: cli exit after run cmd: exit shell
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: 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
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-04 23:08 [binutils-gdb] PR21167, relocation sections not included in groups sergiodj+buildbot
@ 2017-10-12  8:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-12  8:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	db4677b8bd90b49f826807352c6c3c7eb0d57814

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR21167, relocation sections not included in groups

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/db/db4677b8bd90b49f826807352c6c3c7eb0d57814/>

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


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-04 17:39 [binutils-gdb] Fix "Remote 'g' packet reply is too long" problems with multiple inferiors sergiodj+buildbot
@ 2017-10-11 11:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-11 11:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5cd63fda035d4ba949e6478406162c4673b3c9ef

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

Subject:
	Fix "Remote 'g' packet reply is too long" problems with multiple inferiors

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5c/5cd63fda035d4ba949e6478406162c4673b3c9ef/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/catch-signal-fork.exp: got SIGHUP after fork
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
new FAIL: gdb.base/catch-syscall.exp: without args noxml: syscall vfork has returned
new FAIL: gdb.base/catch-syscall.exp: without args noxml: ENOSYS: program has called 123456789
new FAIL: gdb.base/catch-syscall.exp: without args noxml: ENOSYS: syscall 123456789 has returned
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234
new FAIL: gdb.base/fileio.exp: System says shell is not available
PASS -> FAIL: gdb.base/fileio.exp: System says shell is available
PASS -> FAIL: gdb.base/fileio.exp: System
PASS -> FAIL: gdb.base/fileio.exp: System with invalid command returns 127
PASS -> FAIL: gdb.base/fileio.exp: Rename a file
PASS -> FAIL: gdb.base/fileio.exp: Renaming a file to existing directory returns EISDIR
PASS -> FAIL: gdb.base/fileio.exp: renaming a directory to a non-empty directory returns ENOTEMPTY or EEXIST
PASS -> FAIL: gdb.base/fileio.exp: Renaming a directory to a subdir of itself returns EINVAL
PASS -> FAIL: gdb.base/fileio.exp: Renaming a nonexistant file returns ENOENT
PASS -> FAIL: gdb.base/fileio.exp: Unlink a file
PASS -> FAIL: gdb.base/fileio.exp: Unlinking a file in a directory w/o write access returns EACCES
PASS -> FAIL: gdb.base/fileio.exp: Unlinking a nonexistant file returns ENOENT
PASS -> FAIL: gdb.base/fileio.exp: Time
PASS -> FAIL: gdb.base/foll-fork.exp: follow default, detach default, command "next 2": next 2 past fork
PASS -> FAIL: gdb.base/foll-fork.exp: follow default, detach default, command "continue": continue past fork
PASS -> FAIL: gdb.base/foll-fork.exp: follow parent, detach on, command "next 2": next 2 past fork
PASS -> FAIL: gdb.base/foll-fork.exp: follow parent, detach on, command "continue": continue past fork
PASS -> FAIL: gdb.base/foll-fork.exp: set follow-fork parent, hit tbreak
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, through step: step
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, to bp: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exec: vfork parent follow, finish after tcatch vfork: finish
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, through step: step
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, to bp: continue to bp
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork parent follow, finish after tcatch vfork: finish
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: non-stop: info threads
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=on: info threads
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: continue &
PASS -> FAIL: gdb.base/fork-running-state.exp: detach-on-fork=on: follow-fork=parent: all-stop: schedule-multiple=off: info threads
PASS -> FAIL: gdb.base/multi-forks.exp: follow parent, print pids
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork
PASS -> FAIL: gdb.gdb/complaints.exp: run until breakpoint at captured_command_loop
PASS -> FAIL: gdb.gdb/complaints.exp: call complaint
PASS -> FAIL: gdb.gdb/complaints.exp: print symfile_complaints->root->fmt
PASS -> FAIL: gdb.gdb/complaints.exp: list has one entry
PASS -> FAIL: gdb.gdb/complaints.exp: serial start
PASS -> FAIL: gdb.gdb/complaints.exp: serial line 1
PASS -> FAIL: gdb.gdb/complaints.exp: serial line 2
PASS -> FAIL: gdb.gdb/complaints.exp: serial end
PASS -> FAIL: gdb.gdb/complaints.exp: short start
PASS -> FAIL: gdb.gdb/complaints.exp: short line 1
PASS -> FAIL: gdb.gdb/complaints.exp: short line 2
PASS -> FAIL: gdb.gdb/complaints.exp: short end
PASS -> FAIL: gdb.gdb/complaints.exp: empty non-verbose non-noisy clear
PASS -> FAIL: gdb.gdb/complaints.exp: empty verbose non-noisy clear
PASS -> FAIL: gdb.gdb/complaints.exp: empty verbose noisy clear
PASS -> FAIL: gdb.gdb/complaints.exp: empty non-verbose noisy clear
PASS -> FAIL: gdb.gdb/python-interrupts.exp: run until breakpoint at captured_command_loop
PASS -> FAIL: gdb.gdb/python-selftest.exp: run until breakpoint at captured_command_loop
PASS -> FAIL: gdb.gdb/selftest.exp: xgdb is at prompt
PASS -> FAIL: gdb.gdb/selftest.exp: send ^C to child process
PASS -> FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process
PASS -> FAIL: gdb.gdb/selftest.exp: backtrace through signal handler
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: reverse to marker1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=on: inferior 1 exited
PASS -> FAIL: gdb.threads/forking-threads-plus-breakpoint.exp: cond_bp_target=0: detach_on_fork=on: displaced=off: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: inferior 1 exited
PASS -> FAIL: gdb.threads/fork-plus-threads.exp: detach-on-fork=on: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-04 17:39 [binutils-gdb] Redesign mock environment for gdbarch selftests sergiodj+buildbot
@ 2017-10-05 19:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-05 19:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	55b11ddf16b97b9c50ed480bc9da8b3e1c6c4198

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

Subject:
	Redesign mock environment for gdbarch selftests

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/55/55b11ddf16b97b9c50ed480bc9da8b3e1c6c4198/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/starti.exp: continue
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-10-04 16:48 [binutils-gdb] Fix -list-thread-groups --available logic and add test sergiodj+buildbot
@ 2017-10-04 23:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-04 23:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4c71c1059f876fcca9809f7b6372b721ddb83635

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

Subject:
	Fix -list-thread-groups --available logic and add test

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4c/4c71c1059f876fcca9809f7b6372b721ddb83635/>

*** Diff to previous build ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new KFAIL: gdb.ada/bad-task-bp-keyword.exp: break *break_me'address TASK Task TaSK 2
new FAIL: gdb.ada/call_pn.exp: print pn
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_access.all
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/mi_interface.exp: create ggg1 varobj
new FAIL: gdb.ada/mi_interface.exp: list ggg1's children
new FAIL: gdb.ada/O2_float_param.exp: frame
new FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
new FAIL: gdb.ada/ref_param.exp: frame argument value printed
new FAIL: gdb.ada/set_pckd_arr_elt.exp: continue to update_small
new FAIL: gdb.ada/tagged_access.exp: ptype c.all
new FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
new FAIL: gdb.ada/tagged.exp: ptype obj
new FAIL: gdb.ada/tagged.exp: print obj
PASS -> FAIL: gdb.base/gcore.exp: corefile restored all registers
new FAIL: gdb.compile/compile-ifunc.exp: nodebug: p
KFAIL -> KPASS: gdb.cp/cpexprs.exp: p CV::m
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[0]
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[1]
new FAIL: gdb.python/py-thrhandle.exp: print thread id for thrs[2]
new FAIL: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[3]
new FAIL: gdb.python/py-thrhandle.exp: print thread for bogus handle thrs[4]
new FAIL: gdb.python/py-thrhandle.exp: TypeError when passing a symbol object to thread_from_thread_handle
new FAIL: gdb.python/py-thrhandle.exp: Pass overly large object to thread_from_thread_handle
new FAIL: gdb.python/py-thrhandle.exp: Pass too small of an object to thread_from_thread_handle
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-09-01  5:02 [binutils-gdb] PR gdb/22046: Fix T-stopped detach regression on old Linux kernels sergiodj+buildbot
@ 2017-10-04  6:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-04  6:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5c811d30d12b6f7c6c6f4ce6d03408d987154548

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

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

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5c/5c811d30d12b6f7c6c6f4ce6d03408d987154548/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-31 22:00 [binutils-gdb] Implement the ability to set/unset environment variables to GDBserver when starting the inferior sergiodj+buildbot
@ 2017-10-03 10:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-03 10:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0a2dde4a321d2f7bd2ded9a558b9ae92892de0e2

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Implement the ability to set/unset environment variables to GDBserver when starting the inferior

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0a/0a2dde4a321d2f7bd2ded9a558b9ae92892de0e2/>

*** Diff to previous build ***
============================
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
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-31 16:43 [binutils-gdb] Fix buffer read overrun by ensuring that DWARF sections containing strings always end in a NUL byte sergiodj+buildbot
@ 2017-10-02 13:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-10-02 13:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e4f2723003859dc6b33ca0dadbc4a7659ebf1643

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

Subject:
	Fix buffer read overrun by ensuring that DWARF sections containing strings always end in a NUL byte.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e4/e4f2723003859dc6b33ca0dadbc4a7659ebf1643/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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 -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-31  4:27 [binutils-gdb] PR22048, Incorrect .eh_frame section in libc.so sergiodj+buildbot
@ 2017-09-27 23:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-27 23:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	af471f828cc74d65b50a7531ba2c69522266cfe9

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR22048, Incorrect .eh_frame section in libc.so

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/af/af471f828cc74d65b50a7531ba2c69522266cfe9/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-31  4:05 [binutils-gdb] Add elf64.lo together with elfxx-x86.lo for 64-bit BFD sergiodj+buildbot
@ 2017-09-27  4:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-27  4:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3321e42bf2b5819b76ca36e8964fe7cf9a8ae9a2

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add elf64.lo together with elfxx-x86.lo for 64-bit BFD

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/33/3321e42bf2b5819b76ca36e8964fe7cf9a8ae9a2/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-31  3:19 [binutils-gdb] FT32: Permit R_FT32_18 overflow sergiodj+buildbot
@ 2017-09-25  6:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-25  6:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ef32532f22be7e98c25480449fbc7a80d1030e1e

Author(s) (in the same order as the commits):
	James Bowman <jamesb@excamera.com>

Subject:
	FT32: Permit R_FT32_18 overflow

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ef/ef32532f22be7e98c25480449fbc7a80d1030e1e/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-31  1:26 [binutils-gdb] bfd_close_all_done calling _close_and_cleanup sergiodj+buildbot
@ 2017-09-24  9:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-24  9:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e234de6be5cc96286e0efb90e8d9fce51239e901

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	bfd_close_all_done calling _close_and_cleanup

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e2/e234de6be5cc96286e0efb90e8d9fce51239e901/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-30 19:49 [binutils-gdb] x86: Add _bfd_x86_elf_get_synthetic_symtab sergiodj+buildbot
@ 2017-09-23 17:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-23 17:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f493882dab762fb49ecb8685c18a85edfab5e6d3

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Add _bfd_x86_elf_get_synthetic_symtab

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f4/f493882dab762fb49ecb8685c18a85edfab5e6d3/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: switch to inferior 2
PASS -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-30 16:30 [binutils-gdb] x86: Add _bfd_x86_elf_link_hash_table_create sergiodj+buildbot
@ 2017-09-21 19:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-21 19:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	765e526c75506a7d9644bc7c137ac1923fdb1369

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Add _bfd_x86_elf_link_hash_table_create

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/76/765e526c75506a7d9644bc7c137ac1923fdb1369/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-30 15:38 [binutils-gdb] MIPS/BFD: Correct microMIPS cross-mode BAL to JALX relaxation sergiodj+buildbot
@ 2017-09-20 23:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-20 23:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	70e65ca8e5d1fc984d58f6137c290e807fe772a5

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

Subject:
	MIPS/BFD: Correct microMIPS cross-mode BAL to JALX relaxation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/70/70e65ca8e5d1fc984d58f6137c290e807fe772a5/>

*** Diff to previous build ***
============================
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-30 12:51 [binutils-gdb] Remove elf_x86_64_next_tls_desc_index/elf_x86_64_srelplt2 sergiodj+buildbot
@ 2017-09-19  7:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-19  7:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0f2425c4c8fdaa7822555bbb61468b46d4e4af20

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Remove elf_x86_64_next_tls_desc_index/elf_x86_64_srelplt2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0f/0f2425c4c8fdaa7822555bbb61468b46d4e4af20/>

*** 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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-30 12:05 [binutils-gdb] PowerPC TPREL16_HA/LO reloc optimization sergiodj+buildbot
@ 2017-09-18 11:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-18 11:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	9a23f96e919ba91587d077b1d399246dde4002dd

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC TPREL16_HA/LO reloc optimization

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9a/9a23f96e919ba91587d077b1d399246dde4002dd/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-30 11:36 [binutils-gdb] PowerPC64 __tls_get_addr sequence optimization sergiodj+buildbot
@ 2017-09-17 23:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-17 23:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b9f04fe0dfe64bc6224e7bb96378607f17da7446

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC64 __tls_get_addr sequence optimization

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b9/b9f04fe0dfe64bc6224e7bb96378607f17da7446/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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 -> KFAIL: gdb.threads/non-ldr-exit.exp: program exits normally
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: inferior 1 exited
PASS -> KFAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: inferior 1 exited
============================


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

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




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-29 22:11 [binutils-gdb] x86: Re-indent elf32-i386.c/elf64-x86-64.c sergiodj+buildbot
@ 2017-09-15 12:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-15 12:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5f0f0847e23a57d4e95c2c639e803e6f51914efc

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Re-indent elf32-i386.c/elf64-x86-64.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5f/5f0f0847e23a57d4e95c2c639e803e6f51914efc/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-29 18:56 [binutils-gdb] x86: Simplify bad return in get_synthetic_symtab sergiodj+buildbot
@ 2017-09-14  1:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-14  1:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	823cb06774ad6a2aee0afcf6f011c3a134f25747

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Simplify bad return in get_synthetic_symtab

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/82/823cb06774ad6a2aee0afcf6f011c3a134f25747/>

*** Diff to previous build ***
============================
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
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-29 18:16 [binutils-gdb] x86: Check valid PLT sections before checking dynamic relocations sergiodj+buildbot
@ 2017-09-12 19:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-12 19:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	37c0b6ee65941d54fa8064c21b39f97fdc318156

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Check valid PLT sections before checking dynamic relocations

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/37/37c0b6ee65941d54fa8064c21b39f97fdc318156/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-29 13:35 [binutils-gdb] Fix simulation of MSP430's open system call sergiodj+buildbot
@ 2017-09-11 21:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-11 21:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3819af136deb7ba6bc2058d7848cf80b33dbe51c

Author(s) (in the same order as the commits):
	Jozef Lawrynowicz <jozef.l@somniumtech.com>

Subject:
	Fix simulation of MSP430's open system call.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/38/3819af136deb7ba6bc2058d7848cf80b33dbe51c/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-28 23:21 [binutils-gdb] Remove unused _bfd_elf_ifunc_get_synthetic_symtab sergiodj+buildbot
@ 2017-09-10 16:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-10 16:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0fb0a7677827aea3e7ca1fdb2dfd1ccbdf6c2f71

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Remove unused _bfd_elf_ifunc_get_synthetic_symtab

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0f/0fb0a7677827aea3e7ca1fdb2dfd1ccbdf6c2f71/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-28 18:53 [binutils-gdb] x86: Check for valid PLT section size sergiodj+buildbot
@ 2017-09-07  7:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-07  7:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	90efb6422939ca031804266fba669f77c22a274a

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Check for valid PLT section size

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/90/90efb6422939ca031804266fba669f77c22a274a/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-27 14:46 [binutils-gdb] x86: Initialize def_protected sergiodj+buildbot
@ 2017-09-06  6:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-06  6:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	596dc58f33e20bd2784459dc0931e92922465444

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Initialize def_protected

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/59/596dc58f33e20bd2784459dc0931e92922465444/>

*** Diff to previous build ***
============================
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
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-26 11:54 [binutils-gdb] PowerPC TPREL reloc handling sergiodj+buildbot
@ 2017-09-04 16:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-04 16:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7c8bbca5e670b5ea44b61ff30c5c7fcec47ee405

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC TPREL reloc handling

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7c/7c8bbca5e670b5ea44b61ff30c5c7fcec47ee405/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-26  0:39 [binutils-gdb] x86: Remove redundant "symbol" in comments sergiodj+buildbot
@ 2017-09-02 22:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-02 22:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5fdda9d6a4c3520f4787d96c4ae293783fe6262a

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	x86: Remove redundant "symbol" in comments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5f/5fdda9d6a4c3520f4787d96c4ae293783fe6262a/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-25  9:18 [binutils-gdb] gdbserver: Rename some functions, thread -> inferior sergiodj+buildbot
@ 2017-09-02  2:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-02  2:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6afd337d1a1a789b71d77b157529c08250eb9093

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

Subject:
	gdbserver: Rename some functions, thread -> inferior

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6a/6afd337d1a1a789b71d77b157529c08250eb9093/>

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


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-08-24 21:53 [binutils-gdb] Remove unused function set_inferior_target_data sergiodj+buildbot
@ 2017-09-01  4:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-09-01  4:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a160cc4628aa125959dc65983d805500fc58512c

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

Subject:
	Remove unused function set_inferior_target_data

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a1/a160cc4628aa125959dc65983d805500fc58512c/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <f1902523c9b7941775a2c64af89de0f111b8924c@gdb-build>
@ 2017-08-27  2:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-27  2:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f1902523c9b7941775a2c64af89de0f111b8924c

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

Subject:
	DWARF-5: Fix -fdebug-types-section

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f1/f1902523c9b7941775a2c64af89de0f111b8924c/>

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


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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <74081948353b117fcbe870fc3cc9ebe0f18fdcf8@gdb-build>
@ 2017-08-26 11:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-26 11:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	74081948353b117fcbe870fc3cc9ebe0f18fdcf8

Author(s) (in the same order as the commits):
	Alexander Fedotov <alfedotov@gmail.com>

Subject:
	[PowerPC VLE] Add SPE2 and EFS2 instructions support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/74/74081948353b117fcbe870fc3cc9ebe0f18fdcf8/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/sizeof.exp: check valueof "'\377'"
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-06 16:16 [binutils-gdb] Regen SRC-POTFILES.in sergiodj+buildbot
@ 2017-08-23 17:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-23 17:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	86abf93a3a56ccdf1c5f15b841ee9d6a0516a2cf

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Regen SRC-POTFILES.in

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/86/86abf93a3a56ccdf1c5f15b841ee9d6a0516a2cf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-06  4:14 [binutils-gdb] ptid_{lwp,tid}_p: Remove unnecessary checks sergiodj+buildbot
@ 2017-08-22 19:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-22 19:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4e9868d4e0c8e45505876901d22c021dd36972a8

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

Subject:
	ptid_{lwp,tid}_p: Remove unnecessary checks

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4e/4e9868d4e0c8e45505876901d22c021dd36972a8/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-06 12:43 [binutils-gdb] -Wwrite-strings: More Solaris sergiodj+buildbot
@ 2017-08-20 12:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-20 12:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	995816ba55d952b2823d2ead66495c5cad6dfe58

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

Subject:
	-Wwrite-strings: More Solaris

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/99/995816ba55d952b2823d2ead66495c5cad6dfe58/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-06  1:31 [binutils-gdb] -Wwrite-strings: execute_command calls with string literals sergiodj+buildbot
@ 2017-08-17  6:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-17  6:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	9b2eba3dcc6b41f17180e1aee29ed133f942c733

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

Subject:
	-Wwrite-strings: execute_command calls with string literals

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9b/9b2eba3dcc6b41f17180e1aee29ed133f942c733/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-06  0:12 [binutils-gdb] -Wwrite-strings: More fix-old-Python-API wrappers sergiodj+buildbot
@ 2017-08-14  6:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-14  6:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4d75997912d77497fd395fde222513436a7df046

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

Subject:
	-Wwrite-strings: More fix-old-Python-API wrappers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4d/4d75997912d77497fd395fde222513436a7df046/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-05 20:34 [binutils-gdb] -Wwrite-strings: Constify shell_escape and plug make_command leak sergiodj+buildbot
@ 2017-08-07  7:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-07  7:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	be47f9e8180d7275b0e2b26998472e99be9a2d7b

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

Subject:
	-Wwrite-strings: Constify shell_escape and plug make_command leak

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/be/be47f9e8180d7275b0e2b26998472e99be9a2d7b/>

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


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-05 21:07 [binutils-gdb] -Wwrite-strings: Don't initialize string command variables to empty string sergiodj+buildbot
@ 2017-08-06 10:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-06 10:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bde6261aed330cd8d108c387bfe659a6171525dd

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

Subject:
	-Wwrite-strings: Don't initialize string command variables to empty string

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bd/bde6261aed330cd8d108c387bfe659a6171525dd/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-05 15:20 [binutils-gdb] Use frame_unwind_register_value in frame_unwind_register_unsigned sergiodj+buildbot
@ 2017-08-02  4:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-02  4:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2cad08ea7dbc96103da9957da6973f9d0dbc33a8

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

Subject:
	Use frame_unwind_register_value in frame_unwind_register_unsigned

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2c/2cad08ea7dbc96103da9957da6973f9d0dbc33a8/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-05 14:11 [binutils-gdb] Fix racy test in gdb.threads/thread-specific-bp.exp sergiodj+buildbot
@ 2017-08-01  8:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-08-01  8:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	55a98976756cb2df83ac8f8e9799331fbcc4f669

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

Subject:
	Fix racy test in gdb.threads/thread-specific-bp.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/55/55a98976756cb2df83ac8f8e9799331fbcc4f669/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-05  1:01 [binutils-gdb] Initialize gdb::optional empty payload to quiet false -Wmaybe-uninitialized warnings sergiodj+buildbot
@ 2017-07-29 17:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-29 17:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c053b65441eb70ac78a514fabc3431b857a30d2e

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

Subject:
	Initialize gdb::optional empty payload to quiet false -Wmaybe-uninitialized warnings

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c0/c053b65441eb70ac78a514fabc3431b857a30d2e/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: set height unlimited
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-04 23:00 [binutils-gdb] Remove support for FreeBSD/alpha sergiodj+buildbot
@ 2017-07-28  1:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-28  1:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1e1a8bef60db2f524c5eb1d27be22cfa9ff82a84

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

Subject:
	Remove support for FreeBSD/alpha.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1e/1e1a8bef60db2f524c5eb1d27be22cfa9ff82a84/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-04 21:06 [binutils-gdb] Make sect_offset and cu_offset strong typedefs instead of structs sergiodj+buildbot
@ 2017-07-25 13:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-25 13:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	9c5417255690af00751c7d506172459afe856894

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

Subject:
	Make sect_offset and cu_offset strong typedefs instead of structs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9c/9c5417255690af00751c7d506172459afe856894/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-04 20:48 [binutils-gdb] dwarf2read.c: Make dir_index and file_name_index strong typedefs sergiodj+buildbot
@ 2017-07-24 16:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-24 16:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ecfb656c37b982479d8eb07f240b434772d98fd6

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

Subject:
	dwarf2read.c: Make dir_index and file_name_index strong typedefs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ec/ecfb656c37b982479d8eb07f240b434772d98fd6/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-04 14:49 [binutils-gdb] remote.c: Use ptid_t instead of struct ptid sergiodj+buildbot
@ 2017-07-18 16:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-18 16:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d62a8ae2dd0fbb6235f4e8f2fb61b83fe4ba1d90

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

Subject:
	remote.c: Use ptid_t instead of struct ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d6/d62a8ae2dd0fbb6235f4e8f2fb61b83fe4ba1d90/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-04 10:51 [binutils-gdb] Fix null pointer dereferences when using a link built with clang sergiodj+buildbot
@ 2017-07-17 19:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-17 19:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ad32986fdf9da1c8748e47b8b45100398223dba8

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

Subject:
	Fix null pointer dereferences when using a link built with clang.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ad/ad32986fdf9da1c8748e47b8b45100398223dba8/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-04-03 16:30 [binutils-gdb] IA16 support sergiodj+buildbot
@ 2017-07-15 19:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-15 19:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2f5f29cada3c06c9c26f4da5994951effee7d6f7

Author(s) (in the same order as the commits):
	Andrew Jenner <andrew@codesourcery.com>

Subject:
	IA16 support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2f/2f5f29cada3c06c9c26f4da5994951effee7d6f7/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-28 20:37 [binutils-gdb] arc: Add prologue analysis sergiodj+buildbot
@ 2017-07-01 22:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-07-01 22:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	fe5f7374bef8f23ffa0fe0dee0f9b05e0a218a29

Author(s) (in the same order as the commits):
	Anton Kolesov <Anton.Kolesov@synopsys.com>

Subject:
	arc: Add prologue analysis

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/fe/fe5f7374bef8f23ffa0fe0dee0f9b05e0a218a29/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-28 18:58 [binutils-gdb] arc: Align internal regnums with architectural regnums sergiodj+buildbot
@ 2017-06-29 11:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-29 11:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	296ec4fa2afb14abc400fa0109d7288eb958c544

Author(s) (in the same order as the commits):
	Anton Kolesov <Anton.Kolesov@synopsys.com>

Subject:
	arc: Align internal regnums with architectural regnums

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/29/296ec4fa2afb14abc400fa0109d7288eb958c544/>

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


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-27 22:23 [binutils-gdb] gdbserver: xtensa: support THREADPTR register sergiodj+buildbot
@ 2017-06-28 14:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-28 14:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a12e714b775ce025444af15dcfbd5a420363ad53

Author(s) (in the same order as the commits):
	Max Filippov <jcmvbkbc@gmail.com>

Subject:
	gdbserver: xtensa: support THREADPTR register

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a1/a12e714b775ce025444af15dcfbd5a420363ad53/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-27 21:13 [binutils-gdb] gdbserver: xtensa: add call0 support sergiodj+buildbot
@ 2017-06-26  9:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-26  9:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1a09b50a463ad005946849540da136b5cbe6237b

Author(s) (in the same order as the commits):
	Max Filippov <jcmvbkbc@gmail.com>

Subject:
	gdbserver: xtensa: add call0 support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1a/1a09b50a463ad005946849540da136b5cbe6237b/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-27 15:29 [binutils-gdb] gdb/cp-name-parser.y: Eliminate make_empty, use cplus_demangle_fill_component sergiodj+buildbot
@ 2017-06-21 21:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-21 21:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a7e80b9e21eb907ac5c90de7452588c059db0cec

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

Subject:
	gdb/cp-name-parser.y: Eliminate make_empty, use cplus_demangle_fill_component

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a7/a7e80b9e21eb907ac5c90de7452588c059db0cec/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-27 11:50 [binutils-gdb] PR21303, objdump doesn't show e200z4 insns sergiodj+buildbot
@ 2017-06-17 18:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-17 18:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	9b7539374617a94c2d646f49e1bbfc954b11891d

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR21303, objdump doesn't show e200z4 insns

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9b/9b7539374617a94c2d646f49e1bbfc954b11891d/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-27 11:49 [binutils-gdb] Add minimal support for WebAssembly backend to the BFD library sergiodj+buildbot
@ 2017-06-16  1:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-16  1:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8fb740dd3032543b833b141011aa2005c035d024

Author(s) (in the same order as the commits):
	Pip Cet <pipcet@gmail.com>

Subject:
	Add minimal support for WebAssembly backend to the BFD library.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8f/8fb740dd3032543b833b141011aa2005c035d024/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-24 15:38 [binutils-gdb] Avoid segfault on invalid directory table sergiodj+buildbot
@ 2017-06-12  6:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-12  6:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	568c1b9f503649d19ed1d17e6970f212e6b6317d

Author(s) (in the same order as the commits):
	Pádraig Brady <pbrady@fb.com>

Subject:
	Avoid segfault on invalid directory table

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/56/568c1b9f503649d19ed1d17e6970f212e6b6317d/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-25 10:49 [binutils-gdb] Remove some unnecessary inferior_ptid setting/restoring when fetching/storing registers sergiodj+buildbot
@ 2017-06-11  8:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-11  8:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3e00d44febb8093d8dc0e6842b975afb194c4fd1

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

Subject:
	Remove some unnecessary inferior_ptid setting/restoring when fetching/storing registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3e/3e00d44febb8093d8dc0e6842b975afb194c4fd1/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
PASS -> FAIL: gdb.threads/tid-reuse.exp: continue to breakpoint: after_reuse_time
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-23 16:19 [binutils-gdb] Remove MAX_REGISTER_SIZE from sol-thread.c sergiodj+buildbot
@ 2017-06-10 11:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-10 11:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	077ae656a69fcf144f68848a3f6f2cb559b62987

Author(s) (in the same order as the commits):
	Alan Hayward <alan.hayward@arm.com>

Subject:
	Remove MAX_REGISTER_SIZE from sol-thread.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/07/077ae656a69fcf144f68848a3f6f2cb559b62987/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-23 15:04 [binutils-gdb] Remove AARCH64_RECORD_FAILURE sergiodj+buildbot
@ 2017-06-07 15:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-06-07 15:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a0eef9404b0fcfc8b0fbe7511d094a419ac631e9

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

Subject:
	Remove AARCH64_RECORD_FAILURE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a0/a0eef9404b0fcfc8b0fbe7511d094a419ac631e9/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-24 21:27 [binutils-gdb] arc/nps400: Add cp16/cp32 instructions to opcodes library sergiodj+buildbot
@ 2017-05-29 22:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-29 22:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	645d3342ba2b920722991255513030bb903b794e

Author(s) (in the same order as the commits):
	Rinat Zelig <rinat@mellanox.com>

Subject:
	arc/nps400: Add cp16/cp32 instructions to opcodes library

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/64/645d3342ba2b920722991255513030bb903b794e/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-24 16:24 [binutils-gdb] Add rvalue reference tests and docs sergiodj+buildbot
@ 2017-05-25 13:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-25 13:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c0f55cc689a57deb342b988b8f0ecb908f0a76e1

Author(s) (in the same order as the commits):
	Artemiy Volkov <artemiyv@acm.org>

Subject:
	Add rvalue reference tests and docs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c0/c0f55cc689a57deb342b988b8f0ecb908f0a76e1/>

*** Diff to previous build ***
============================
new FAIL: gdb.cp/rvalue-ref-overload.exp: lvalue reference to const overload
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-23  1:42 [binutils-gdb] Add rvalue references to overloading resolution sergiodj+buildbot
@ 2017-05-24 17:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-24 17:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	15c0a2a9305648095f5586a02b5a5017e1643e99

Author(s) (in the same order as the commits):
	Artemiy Volkov <artemiyv@acm.org>

Subject:
	Add rvalue references to overloading resolution

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/15/15c0a2a9305648095f5586a02b5a5017e1643e99/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-23  0:29 [binutils-gdb] Support DW_TAG_rvalue_reference type sergiodj+buildbot
@ 2017-05-21 22:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-21 22:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4297a3f0029974c62628d69b6f3f9ef25f01ea7d

Author(s) (in the same order as the commits):
	Artemiy Volkov <artemiyv@acm.org>

Subject:
	Support DW_TAG_rvalue_reference type

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/42/4297a3f0029974c62628d69b6f3f9ef25f01ea7d/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22 23:28 [binutils-gdb] Add ability to return rvalue reference values from value_ref sergiodj+buildbot
@ 2017-05-18  6:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-18  6:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a65cfae5f8b268158c23a862e7a996d15bbcef0e

Author(s) (in the same order as the commits):
	Artemiy Volkov <artemiyv@acm.org>

Subject:
	Add ability to return rvalue reference values from value_ref

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a6/a65cfae5f8b268158c23a862e7a996d15bbcef0e/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-24  7:12 [binutils-gdb] Change {lookup,make}_reference_type API sergiodj+buildbot
@ 2017-05-17  9:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-17  9:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3b22433085e4cfee83f5c52f3baa8fb9bc67f8dd

Author(s) (in the same order as the commits):
	Artemiy Volkov <artemiyv@acm.org>

Subject:
	Change {lookup,make}_reference_type API

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3b/3b22433085e4cfee83f5c52f3baa8fb9bc67f8dd/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/new-ui.exp: do_test: delete all breakpoints on extra console
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22 19:22 [binutils-gdb] i386-gnu-nat: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
@ 2017-05-09 10:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-09 10:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d9cb6cdcfa12368f2f639f8cd06d18b94bd98a39

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

Subject:
	i386-gnu-nat: Use ptid from regcache instead of inferior_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d9/d9cb6cdcfa12368f2f639f8cd06d18b94bd98a39/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22 17:59 [binutils-gdb] hppa-obsd-nat: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
@ 2017-05-06 20:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-05-06 20:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bbe1eef1e585e19d5493882e55f2b7902df9827a

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

Subject:
	hppa-obsd-nat: Use ptid from regcache instead of inferior_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bb/bbe1eef1e585e19d5493882e55f2b7902df9827a/>

*** Diff to previous build ***
============================
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/signal-while-stepping-over-bp-other-thread.exp: step
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22 13:04 [binutils-gdb] Fix PR gdb/19637: bound_registers.py: Add support for Python 3 sergiodj+buildbot
@ 2017-04-29 15:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-29 15:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7503099f3e29739d34cb1224d54fba96404e6e61

Author(s) (in the same order as the commits):
	Jonah Graham <jonah@kichwacoders.com>

Subject:
	Fix PR gdb/19637: bound_registers.py: Add support for Python 3

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/75/7503099f3e29739d34cb1224d54fba96404e6e61/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22 12:43 [binutils-gdb] E6500 spr mnemonics sergiodj+buildbot
@ 2017-04-28  6:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-28  6:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4b94dd2de12dd0389615700b13b63260e162ccf0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	E6500 spr mnemonics

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4b/4b94dd2de12dd0389615700b13b63260e162ccf0/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22  7:47 [binutils-gdb] Fix expect for gdb.cp/m-static.exp sergiodj+buildbot
@ 2017-04-18  9:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-18  9:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ec3b243d4308ee56c9e3c62470b10ed2a822eb51

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

Subject:
	Fix expect for gdb.cp/m-static.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ec/ec3b243d4308ee56c9e3c62470b10ed2a822eb51/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22 20:08 [binutils-gdb] Add DW_OP_GNU_variable_value sergiodj+buildbot
@ 2017-04-15 19:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-15 19:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c98763221af696a9e0c6686da7d65881bfd6bdd0

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add DW_OP_GNU_variable_value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c9/c98763221af696a9e0c6686da7d65881bfd6bdd0/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22  3:39 [binutils-gdb] aix-thread: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
@ 2017-04-08 22:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-08 22:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	edb5fb00a6865884f99be01a9e97f44243a9deb9

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

Subject:
	aix-thread: Use ptid from regcache instead of inferior_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ed/edb5fb00a6865884f99be01a9e97f44243a9deb9/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22  2:36 [binutils-gdb] amd64-linux-nat: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
@ 2017-04-07  4:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-07  4:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6a06fbb7b73fe55d6b9057f8154652e1ae8f883c

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

Subject:
	amd64-linux-nat: Use ptid from regcache instead of inferior_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6a/6a06fbb7b73fe55d6b9057f8154652e1ae8f883c/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22  2:06 [binutils-gdb] Introduce regcache_get_ptid sergiodj+buildbot
@ 2017-04-05 11:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-04-05 11:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ddaaf0fb8605fced72e84410fc7ac834e529eb53

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

Subject:
	Introduce regcache_get_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/dd/ddaaf0fb8605fced72e84410fc7ac834e529eb53/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-22  1:38 [binutils-gdb] gdbserver: Use pattern rule for objects from common/ sergiodj+buildbot
@ 2017-03-31  6:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-31  6:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6bda016bec556855c6d4e191f360f921faa40ded

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

Subject:
	gdbserver: Use pattern rule for objects from common/

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6b/6bda016bec556855c6d4e191f360f921faa40ded/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-13 10:26 [binutils-gdb] Rename R_AARCH64_TLSDESC_LD64_LO12_NC to R_AARCH64_TLSDESC_LD64_LO12 and R_AARCH64_TLSDESC_ADD_LO12_NC to R_AARCH64_TLSDESC_ADD_LO12 sergiodj+buildbot
@ 2017-03-24  8:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-24  8:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f955cccff399ccc4e16b8e90f140f2e9a785a07b

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

Subject:
	Rename R_AARCH64_TLSDESC_LD64_LO12_NC to R_AARCH64_TLSDESC_LD64_LO12 and R_AARCH64_TLSDESC_ADD_LO12_NC to R_AARCH64_TLSDESC_ADD_LO12.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f9/f955cccff399ccc4e16b8e90f140f2e9a785a07b/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-09 16:53 [binutils-gdb] Fix compile time warnings about using possibly uninitialised variables in rs6000-core.c sergiodj+buildbot
@ 2017-03-15 13:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-15 13:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f03265d9cda1f5f8df238efa9b7a20330e5711f1

Author(s) (in the same order as the commits):
	Sam Thursfield <sam.thursfield@codethink.co.uk>

Subject:
	Fix compile time warnings about using possibly uninitialised variables in rs6000-core.c.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f0/f03265d9cda1f5f8df238efa9b7a20330e5711f1/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-09 16:05 [binutils-gdb] Use CpuCET on rdsspq sergiodj+buildbot
@ 2017-03-14  1:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-14  1:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c1fe188b154a4e81372629316be3d3a7820efdac

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Use CpuCET on rdsspq

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c1/c1fe188b154a4e81372629316be3d3a7820efdac/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-09  3:06 [binutils-gdb] Update -maltivec and -mvsx options to only enable their oldest instructions sergiodj+buildbot
@ 2017-03-13  5:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-13  5:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4b8b687e885287ed85dafffcebbb8d03d7ea2c38

Author(s) (in the same order as the commits):
	Peter Bergner <bergner@vnet.ibm.com>

Subject:
	Update -maltivec and -mvsx options to only enable their oldest instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4b/4b8b687e885287ed85dafffcebbb8d03d7ea2c38/>

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


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-08 22:52 [binutils-gdb] Avoid unstable test message in gdb.base/step-over-exit.exp sergiodj+buildbot
@ 2017-03-12  9:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-12  9:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1de05205afe1ecd1f1fa2befc6843d0dc70adefc

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

Subject:
	Avoid unstable test message in gdb.base/step-over-exit.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1d/1de05205afe1ecd1f1fa2befc6843d0dc70adefc/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/altivec-regs.exp: info reg vscr
PASS -> FAIL: gdb.arch/altivec-regs.exp: print vscr
PASS -> FAIL: gdb.arch/altivec-regs.exp: info vector
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-08 20:33 [binutils-gdb] Add support for the new 'lnia' extended mnemonic sergiodj+buildbot
@ 2017-03-11 12:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-11 12:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1437d0631b209500db8371c425e896deb66ec9f9

Author(s) (in the same order as the commits):
	Peter Bergner <bergner@vnet.ibm.com>

Subject:
	Add support for the new 'lnia' extended mnemonic.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/14/1437d0631b209500db8371c425e896deb66ec9f9/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/powerpc-power9.exp: found: addpcis r3,0
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-08 13:45 [binutils-gdb] "gdb.arch/i386-pkru.exp: probe PKRU support" shouldn't FAIL if not supported sergiodj+buildbot
@ 2017-03-09 15:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-09 15:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	25dcbff6ef0088e080d92b3cbc346ae0b5071d9d

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

Subject:
	"gdb.arch/i386-pkru.exp: probe PKRU support" shouldn't FAIL if not supported

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/25/25dcbff6ef0088e080d92b3cbc346ae0b5071d9d/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-08  2:52 [binutils-gdb] Fix PR tui/21216: TUI line breaks regression sergiodj+buildbot
@ 2017-03-09  3:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-09  3:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	9753a2f6d74dc92d2ad94993a5479ee0edbc6887

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

Subject:
	Fix PR tui/21216: TUI line breaks regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/97/9753a2f6d74dc92d2ad94993a5479ee0edbc6887/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-08  0:56 [binutils-gdb] Move TUI testcases to new gdb/testsuite/gdb.tui/ directory sergiodj+buildbot
@ 2017-03-08 19:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-08 19:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7cbbff33a502dcba0264a1935840345274b8aee2

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

Subject:
	Move TUI testcases to new gdb/testsuite/gdb.tui/ directory

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7c/7cbbff33a502dcba0264a1935840345274b8aee2/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: switch to inferior 2
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-07 21:08 [binutils-gdb] Share gdb/environ.[ch] with gdbserver sergiodj+buildbot
@ 2017-03-08 16:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-08 16:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1672e0d98d88d11b5c7d5793bd2cf29cbb56696f

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Share gdb/environ.[ch] with gdbserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/16/1672e0d98d88d11b5c7d5793bd2cf29cbb56696f/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-07 14:45 [binutils-gdb] Add describing intro comment to gdb.base/tui-layout.exp sergiodj+buildbot
@ 2017-03-07 18:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-07 18:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f8c4e718c26a0181821398e09d96113c0ff49c15

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

Subject:
	Add describing intro comment to gdb.base/tui-layout.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f8/f8c4e718c26a0181821398e09d96113c0ff49c15/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-05  4:44 [binutils-gdb] Align eh_frame FDEs according to their encoding sergiodj+buildbot
@ 2017-03-05  6:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-05  6:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2e0ce1c84d328bde4dca24b7cfc8b9c033ed271c

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Align eh_frame FDEs according to their encoding

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2e/2e0ce1c84d328bde4dca24b7cfc8b9c033ed271c/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-03-02  0:24 [binutils-gdb] PowerPC VLE typo fix sergiodj+buildbot
@ 2017-03-02 17:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-02 17:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	673cff9b8b3105f74ce97c202a0727f9e83e56e6

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC VLE typo fix

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/67/673cff9b8b3105f74ce97c202a0727f9e83e56e6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: no double prompt
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
PASS -> FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-28 10:17 [binutils-gdb] x86: fix handling of 64-bit operand size VPCMPESTR{I, M} sergiodj+buildbot
@ 2017-03-01 22:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-01 22:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	15c7c1d8a535000e94ed36f4259d0ede32001408

Author(s) (in the same order as the commits):
	Jan Beulich <jbeulich@novell.com>

Subject:
	x86: fix handling of 64-bit operand size VPCMPESTR{I,M}

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/15/15c7c1d8a535000e94ed36f4259d0ede32001408/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-28  4:22 [binutils-gdb] PowerPC addpcis fix sergiodj+buildbot
@ 2017-03-01 13:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-01 13:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7ba71655a425ac44721f97cc0ad7922ca15bce43

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC addpcis fix

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7b/7ba71655a425ac44721f97cc0ad7922ca15bce43/>

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


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-28  0:57 [binutils-gdb] MIPS/BFD: Also handle `jalr $0, $25' with R_MIPS_JALR sergiodj+buildbot
@ 2017-03-01  5:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-03-01  5:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0e39210161e7c547ab53afb86997303e24a42c0c

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

Subject:
	MIPS/BFD: Also handle `jalr $0, $25' with R_MIPS_JALR

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0e/0e39210161e7c547ab53afb86997303e24a42c0c/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-27 18:58 [binutils-gdb] Use range-based for loop in remote_add_target_side_condition sergiodj+buildbot
@ 2017-02-28 21:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-28 21:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8362122330c97c8c4a15da4e7ba8aa29f0c11157

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

Subject:
	Use range-based for loop in remote_add_target_side_condition

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/83/8362122330c97c8c4a15da4e7ba8aa29f0c11157/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-26  5:34 [binutils-gdb] Add missing smov support, and clean up existing umov support sergiodj+buildbot
@ 2017-02-27 16:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-27 16:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	152e1e1bc90030cec9ce8318ab982675b1e90a00

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Add missing smov support, and clean up existing umov support.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/15/152e1e1bc90030cec9ce8318ab982675b1e90a00/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-24 19:18 [binutils-gdb] Add new counter-enable CSRs sergiodj+buildbot
@ 2017-02-26 12:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-26 12:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	742d14b39b384e822fd2218cf1803aef68a95d99

Author(s) (in the same order as the commits):
	Andrew Waterman <andrew@sifive.com>

Subject:
	Add new counter-enable CSRs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/74/742d14b39b384e822fd2218cf1803aef68a95d99/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-23 20:15 [binutils-gdb] S/390: Add support for new cpu architecture - arch12 sergiodj+buildbot
@ 2017-02-25  8:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-25  8:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	64025b4ec97fe8e932c367c6cb719e5fcf2448e8

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

Subject:
	S/390: Add support for new cpu architecture - arch12.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/64/64025b4ec97fe8e932c367c6cb719e5fcf2448e8/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-23 15:54 [binutils-gdb] Fix usage of inferior_ptid in two thread_alive implementations sergiodj+buildbot
@ 2017-02-24 16:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-24 16:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8eaf53202ea60191162d5f1069cd08ebd9f38f6c

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

Subject:
	Fix usage of inferior_ptid in two thread_alive implementations

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8e/8eaf53202ea60191162d5f1069cd08ebd9f38f6c/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/attach.exp: force switch to gdb64, if necessary
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-23 10:18 [binutils-gdb] x86: drop stray VEX opcode 82 references sergiodj+buildbot
@ 2017-02-24  4:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-24  4:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	53c4d625d70138fb5b75f0e2ebae8ff363ed3d46

Author(s) (in the same order as the commits):
	Jan Beulich <jbeulich@novell.com>

Subject:
	x86: drop stray VEX opcode 82 references

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/53/53c4d625d70138fb5b75f0e2ebae8ff363ed3d46/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-22 17:45 [binutils-gdb] Align .gnu_debuglink sections on a 4-byte boundary sergiodj+buildbot
@ 2017-02-23 15:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-23 15:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	758d96d834ba725461abf4be36df9f13e0815054

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

Subject:
	Align .gnu_debuglink sections on a 4-byte boundary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/75/758d96d834ba725461abf4be36df9f13e0815054/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-21 23:12 [binutils-gdb] PowerPC ld segfault on script discarding dynamic sections sergiodj+buildbot
@ 2017-02-23  3:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-23  3:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6528b6eba85f044667876a2ad77d4612a9e5fc65

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC ld segfault on script discarding dynamic sections

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/65/6528b6eba85f044667876a2ad77d4612a9e5fc65/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-21 15:39 [binutils-gdb] [ppc64] Add POWER8/ISA 2.07 atomic sequences single-stepping support sergiodj+buildbot
@ 2017-02-22 20:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-22 20:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2039d74e780db6659c87cd3c426d526615cfe703

Author(s) (in the same order as the commits):
	Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>

Subject:
	[ppc64] Add POWER8/ISA 2.07 atomic sequences single-stepping support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/20/2039d74e780db6659c87cd3c426d526615cfe703/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-21 14:17 [binutils-gdb] Fix test names starting with uppercase in gdb.arch/ppc64-atomic-inst.exp sergiodj+buildbot
@ 2017-02-22 15:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-22 15:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a51d7ecf3ddd64e0aec68e3c30913faba680b2cb

Author(s) (in the same order as the commits):
	Edjunior Barbosa Machado <emachado@linux.vnet.ibm.com>

Subject:
	Fix test names starting with uppercase in gdb.arch/ppc64-atomic-inst.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a5/a51d7ecf3ddd64e0aec68e3c30913faba680b2cb/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-20 20:58 [binutils-gdb] Code cleanup: Split dwarf2_ranges_read to a callback sergiodj+buildbot
@ 2017-02-22  0:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-22  0:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5f46c5a54825aabb3f30095c84ac30aff7400ac5

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

Subject:
	Code cleanup: Split dwarf2_ranges_read to a callback

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5f/5f46c5a54825aabb3f30095c84ac30aff7400ac5/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-17 11:43 [binutils-gdb] Add support for Intel PKRU register to GDB and GDBserver sergiodj+buildbot
@ 2017-02-21  0:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-21  0:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	51547df62c155231530ca502c485659f3d2b66cb

Author(s) (in the same order as the commits):
	Michael Sturm <michael.sturm@intel.com>

Subject:
	Add support for Intel PKRU register to GDB and GDBserver.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/51/51547df62c155231530ca502c485659f3d2b66cb/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-15 21:34 [binutils-gdb] i386: Allow "lea foo@GOT, %reg" in PIC sergiodj+buildbot
@ 2017-02-18 13:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-18 13:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2a5684011edabf5804abb9e11253a9747587b284

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	i386: Allow "lea foo@GOT, %reg" in PIC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2a/2a5684011edabf5804abb9e11253a9747587b284/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-15 17:26 [binutils-gdb] [AArch64] Add SVE system registers sergiodj+buildbot
@ 2017-02-18  2:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-18  2:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	773fb663445646ebe45298e255d263f9520b2e2e

Author(s) (in the same order as the commits):
	Richard Sandiford <richard.sandiford@arm.com>

Subject:
	[AArch64] Add SVE system registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/77/773fb663445646ebe45298e255d263f9520b2e2e/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-15 12:11 [binutils-gdb] Fix illegal upper case gdb cmd in chained-calls.exp sergiodj+buildbot
@ 2017-02-17 17:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-17 17:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b58a8c0c83d58c8f4be67dc1d7a1d9a5e1edba82

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

Subject:
	Fix illegal upper case gdb cmd in chained-calls.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b5/b58a8c0c83d58c8f4be67dc1d7a1d9a5e1edba82/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-14 19:24 [binutils-gdb] Update ppc64_elf_gc_mark_dynamic_ref sergiodj+buildbot
@ 2017-02-16  6:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-16  6:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e278ae05839ccffa234e0bfb4286b9f9a9dfbd28

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Update ppc64_elf_gc_mark_dynamic_ref

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e2/e278ae05839ccffa234e0bfb4286b9f9a9dfbd28/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-14 17:02 [binutils-gdb] python: Implement btrace Python bindings for record history sergiodj+buildbot
@ 2017-02-15 18:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-15 18:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	75c0bdf484b7a949a53b04edd95edca5f4662184

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

Subject:
	python: Implement btrace Python bindings for record history.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/75/75c0bdf484b7a949a53b04edd95edca5f4662184/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/new-ui.exp: do_test: delete all breakpoints on extra console
PASS -> FAIL: gdb.base/new-ui.exp: do_test: main console: next causes no spurious output on other console
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-14 10:42 [binutils-gdb] btrace: Count gaps as one instruction explicitly sergiodj+buildbot
@ 2017-02-14 15:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-14 15:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	69090ceead6fa841669eea0c81b3e8e9695def5f

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

Subject:
	btrace: Count gaps as one instruction explicitly.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/69/69090ceead6fa841669eea0c81b3e8e9695def5f/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-13 15:27 [binutils-gdb] Improve load command's help text sergiodj+buildbot
@ 2017-02-13 23:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-13 23:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5cf30ebf64d3c6da961094c615a94d2f1682a478

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Improve load command's help text

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5c/5cf30ebf64d3c6da961094c615a94d2f1682a478/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-11  5:11 [binutils-gdb] Remove unused variable in rust-lang.c sergiodj+buildbot
@ 2017-02-12  9:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-12  9:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0b145e37a29cd96e567293dc69c0fd4f8af243b9

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

Subject:
	Remove unused variable in rust-lang.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0b/0b145e37a29cd96e567293dc69c0fd4f8af243b9/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-11  0:55 [binutils-gdb] Remove unnecessary local variables sergiodj+buildbot
@ 2017-02-12  0:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-12  0:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2d8365c48f797c7b947623eed8b1285d98323b68

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

Subject:
	Remove unnecessary local variables

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2d/2d8365c48f797c7b947623eed8b1285d98323b68/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-10 20:08 [binutils-gdb] Remove some ui_out-related cleanups from Python sergiodj+buildbot
@ 2017-02-11  4:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-11  4:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d4b0bb186e204f77ed70bc719d16c6ca302094fd

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

Subject:
	Remove some ui_out-related cleanups from Python

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d4/d4b0bb186e204f77ed70bc719d16c6ca302094fd/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-10 18:09 [binutils-gdb] gdb/MAINTAINERS: Update my e-mail address sergiodj+buildbot
@ 2017-02-10 23:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-10 23:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f67f945cf2f6361d4c4997c487b174e396d23cd9

Author(s) (in the same order as the commits):
	Martin Galvan <martingalvan@sourceware.org>

Subject:
	gdb/MAINTAINERS: Update my e-mail address

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f6/f67f945cf2f6361d4c4997c487b174e396d23cd9/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-10  8:52 [binutils-gdb] POWER9 add scv/rfscv instruction support sergiodj+buildbot
@ 2017-02-10 10:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-10 10:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	dce75bf9848c88583377c608e9734a2f8616d12b

Author(s) (in the same order as the commits):
	Nicholas Piggin <npiggin@gmail.com>

Subject:
	POWER9 add scv/rfscv instruction support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/dc/dce75bf9848c88583377c608e9734a2f8616d12b/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-09 15:56 [binutils-gdb] Fix NULL pointer dereference sergiodj+buildbot
@ 2017-02-09 17:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-09 17:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ff6fa24786eb2c03c1af95e2559fa3fd0b2f3893

Author(s) (in the same order as the commits):
	Gary Benson <gbenson@redhat.com>

Subject:
	Fix NULL pointer dereference

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ff/ff6fa24786eb2c03c1af95e2559fa3fd0b2f3893/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-08 20:52 [binutils-gdb] Eliminate interp::quiet_p sergiodj+buildbot
@ 2017-02-09  4:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-09  4:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a474bd8eeea16b2b6aa7089dedb142d86c22a4d7

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

Subject:
	Eliminate interp::quiet_p

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a4/a474bd8eeea16b2b6aa7089dedb142d86c22a4d7/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
PASS -> FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-08 18:32 [binutils-gdb] Command names: make them case sensitive sergiodj+buildbot
@ 2017-02-08 20:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-08 20:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3d7b173c29900879c9a5958dd6029fd36666e57c

Author(s) (in the same order as the commits):
	Jerome Guitton <guitton@adacore.com>

Subject:
	Command names: make them case sensitive

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3d/3d7b173c29900879c9a5958dd6029fd36666e57c/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-07 21:40 [binutils-gdb] gdb: fix ARI warning in sparc-tdep.c sergiodj+buildbot
@ 2017-02-07 23:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-07 23:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1291063deab60b735429411b29eea9d7fd68d50e

Author(s) (in the same order as the commits):
	Jose E. Marchesi <jose.marchesi@oracle.com>

Subject:
	gdb: fix ARI warning in sparc-tdep.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/12/1291063deab60b735429411b29eea9d7fd68d50e/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-07 14:25 [binutils-gdb] bfd: Fix objdump --dynamic-reloc for SPARC 64-bit to show symbol names sergiodj+buildbot
@ 2017-02-07 15:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-07 15:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3d044c0c78c11968b4fe3c5c019523e3177b1710

Author(s) (in the same order as the commits):
	Sheldon Lobo <sheldon.lobo@oracle.com>

Subject:
	bfd: Fix objdump --dynamic-reloc for SPARC 64-bit to show symbol names.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3d/3d044c0c78c11968b4fe3c5c019523e3177b1710/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-06 10:53 [binutils-gdb] [ARC] Provide an interface to decode ARC instructions sergiodj+buildbot
@ 2017-02-07  3:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-07  3:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6ec7c1ae19e9e1bf2edad5125941a2fd5fdfde0b

Author(s) (in the same order as the commits):
	Claudiu Zissulescu <claziss@synopsys.com>

Subject:
	[ARC] Provide an interface to decode ARC instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6e/6ec7c1ae19e9e1bf2edad5125941a2fd5fdfde0b/>

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


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-06  9:31 [binutils-gdb] [BZ 21005] Add support for Intel 64 rdrand and rdseed record/replay sergiodj+buildbot
@ 2017-02-06 22:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-06 22:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	20b477a75c00de06a92b9577fd74416699d2c37f

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	[BZ 21005] Add support for Intel 64 rdrand and rdseed record/replay

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/20/20b477a75c00de06a92b9577fd74416699d2c37f/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-03  9:19 [binutils-gdb] Fix compile time warning messages when compiling binutils with gcc 7.0.1 sergiodj+buildbot
@ 2017-02-05 22:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-05 22:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1b7e3d2fb7036ce6f9d74e32dc052518f5cd45b6

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

Subject:
	Fix compile time warning messages when compiling binutils with gcc 7.0.1.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1b/1b7e3d2fb7036ce6f9d74e32dc052518f5cd45b6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-03  0:38 [binutils-gdb] Fix "maintenance selftest" printing stray instructions sergiodj+buildbot
@ 2017-02-05  5:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-05  5:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b1ace6bdc2063f3dcf46172db98bb3474b6e1121

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

Subject:
	Fix "maintenance selftest" printing stray instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b1/b1ace6bdc2063f3dcf46172db98bb3474b6e1121/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-03  0:13 [binutils-gdb] MIPS/BFD: Respect the ELF gABI dynamic symbol table sort requirement sergiodj+buildbot
@ 2017-02-04 21:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-04 21:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e17b0c351f0b22fb42edf34e5a6e486d72e9ee05

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

Subject:
	MIPS/BFD: Respect the ELF gABI dynamic symbol table sort requirement

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e1/e17b0c351f0b22fb42edf34e5a6e486d72e9ee05/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-03  1:31 [binutils-gdb] MIPS/BFD: Streamline hash table references in `mips_elf_sort_hash_table' sergiodj+buildbot
@ 2017-02-04 13:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-04 13:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0f8c4b60ef3953a2373992e468106ae833049fff

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

Subject:
	MIPS/BFD: Streamline hash table references in `mips_elf_sort_hash_table'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0f/0f8c4b60ef3953a2373992e468106ae833049fff/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-02 23:37 [binutils-gdb] MIPS/BFD: Fix assertion in `mips_elf_sort_hash_table' sergiodj+buildbot
@ 2017-02-04  9:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-04  9:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	17a80fa80adbe79df39ba1fc70e611dff92df197

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

Subject:
	MIPS/BFD: Fix assertion in `mips_elf_sort_hash_table'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/17/17a80fa80adbe79df39ba1fc70e611dff92df197/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-02 23:22 [binutils-gdb] BFD: Wrap overlong error handler call line in `elf_gc_sweep' sergiodj+buildbot
@ 2017-02-04  5:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-04  5:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8f56d4fd28b887cc709524b1993c9da4c64b0696

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

Subject:
	BFD: Wrap overlong error handler call line in `elf_gc_sweep'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8f/8f56d4fd28b887cc709524b1993c9da4c64b0696/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-02 22:23 [binutils-gdb] Move "tee" building down to interpreter::set_logging_proc sergiodj+buildbot
@ 2017-02-04  1:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-04  1:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	616268b639780e0819b51053c794037bcde3de16

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

Subject:
	Move "tee" building down to interpreter::set_logging_proc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/61/616268b639780e0819b51053c794037bcde3de16/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-02 14:53 [binutils-gdb] Fix "-gdb-set logging redirect on" crash sergiodj+buildbot
@ 2017-02-03 21:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-03 21:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5be5dbf0ce3d2eb20003fea3691eaa6bfa5710d2

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

Subject:
	Fix "-gdb-set logging redirect on" crash

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5b/5be5dbf0ce3d2eb20003fea3691eaa6bfa5710d2/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-02 13:57 [binutils-gdb] Tweak pretty_print_disassembler's intro comment sergiodj+buildbot
@ 2017-02-03 17:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-03 17:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c99cc448c805b6bd481603155078881a503cd64a

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

Subject:
	Tweak pretty_print_disassembler's intro comment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c9/c99cc448c805b6bd481603155078881a503cd64a/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-02 12:25 [binutils-gdb] Eliminate make_cleanup_ui_file_delete / make ui_file a class hierarchy sergiodj+buildbot
@ 2017-02-03  9:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-03  9:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d7e747318f4d04af033f16325f9b6d74f67079ec

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

Subject:
	Eliminate make_cleanup_ui_file_delete / make ui_file a class hierarchy

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d7/d7e747318f4d04af033f16325f9b6d74f67079ec/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-01 16:25 [binutils-gdb] Big-endian targets: Don't ignore offset into DW_OP_implicit_value sergiodj+buildbot
@ 2017-02-02 22:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-02 22:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7346ef59bb33e28161d78ab478c3476b3dab2e8e

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

Subject:
	Big-endian targets: Don't ignore offset into DW_OP_implicit_value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/73/7346ef59bb33e28161d78ab478c3476b3dab2e8e/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-01 15:42 [binutils-gdb] btrace, testsuite: fix extended-remote non-stop test sergiodj+buildbot
@ 2017-02-02 10:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-02 10:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0a1c7e2881226bb9734d7c31c9415c636f35921d

Author(s) (in the same order as the commits):
	Markus Metzger <markus.t.metzger@intel.com>

Subject:
	btrace, testsuite: fix extended-remote non-stop test

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0a/0a1c7e2881226bb9734d7c31c9415c636f35921d/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: wrapcont: set height unlimited
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-01 15:06 [binutils-gdb] btrace: add unsupported/untested messages when skipping tests sergiodj+buildbot
@ 2017-02-02  6:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-02  6:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b5ac99b0828d4e1dfa33540b428c0fc6c32eda67

Author(s) (in the same order as the commits):
	Markus Metzger <markus.t.metzger@intel.com>

Subject:
	btrace: add unsupported/untested messages when skipping tests

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b5/b5ac99b0828d4e1dfa33540b428c0fc6c32eda67/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-01 13:56 [binutils-gdb] thread: add can_access_registers_ptid sergiodj+buildbot
@ 2017-02-01 21:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-01 21:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	cf77c34ea71c27c3cb6dd31c9448249276e8a8a6

Author(s) (in the same order as the commits):
	Markus Metzger <markus.t.metzger@intel.com>

Subject:
	thread: add can_access_registers_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cf/cf77c34ea71c27c3cb6dd31c9448249276e8a8a6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-02-01  0:40 [binutils-gdb] gdb/varobj.c: Fix leak sergiodj+buildbot
@ 2017-02-01  6:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-01  6:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b47413b47e103677fedb7cd1301c62fee01ac4ba

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

Subject:
	gdb/varobj.c: Fix leak

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b4/b47413b47e103677fedb7cd1301c62fee01ac4ba/>

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


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-31 23:53 [binutils-gdb] gdb: make_scoped_restore and types convertible to T sergiodj+buildbot
@ 2017-02-01  1:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-02-01  1:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	60adb36c08942fd4a2f8bf598864254c043668a1

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

Subject:
	gdb: make_scoped_restore and types convertible to T

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/60/60adb36c08942fd4a2f8bf598864254c043668a1/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-27 16:49 [binutils-gdb] amd64-linux: expose system register FS_BASE and GS_BASE for Linux sergiodj+buildbot
@ 2017-01-28 16:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-28 16:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2735833d5fb220983d09770087b573fed5bf93cd

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

Subject:
	amd64-linux: expose system register FS_BASE and GS_BASE for Linux.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/27/2735833d5fb220983d09770087b573fed5bf93cd/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-27 15:16 [binutils-gdb] amd64: remove additional comparison for validity of a register number sergiodj+buildbot
@ 2017-01-28  8:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-28  8:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7005d26ac72abbf12e02947ab87dbb3804f326a8

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

Subject:
	amd64: remove additional comparison for validity of a register number.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/70/7005d26ac72abbf12e02947ab87dbb3804f326a8/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-27 14:35 [binutils-gdb] gdbserver-amd64: add HAVE_STRUCT_USER_REGS_STRUCT_(GS|FS)_BASE for gdbserver sergiodj+buildbot
@ 2017-01-28  4:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-28  4:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	239b6d10954b18ce089e9c3a667e7f2df3655476

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

Subject:
	gdbserver-amd64: add HAVE_STRUCT_USER_REGS_STRUCT_(GS|FS)_BASE for gdbserver.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/23/239b6d10954b18ce089e9c3a667e7f2df3655476/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-27  8:31 [binutils-gdb] Fix unused-but-set warning in elf32-cris.c:elf_cris_finish_dynamic_symbol sergiodj+buildbot
@ 2017-01-27 15:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-27 15:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	22d9a0dee3a69973858000b326cf8eaa14ce7180

Author(s) (in the same order as the commits):
	Hans-Peter Nilsson <hp@bitrange.com>

Subject:
	Fix unused-but-set warning in elf32-cris.c:elf_cris_finish_dynamic_symbol

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/22/22d9a0dee3a69973858000b326cf8eaa14ce7180/>

*** Diff to previous build ***
============================
new FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
new FAIL: gdb.arch/altivec-regs.exp: info reg vscr
new FAIL: gdb.arch/altivec-regs.exp: print vscr
new FAIL: gdb.arch/altivec-regs.exp: info vector
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork one
new FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork two
new FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork three
new FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork four
new FAIL: gdb.base/checkpoint.exp: exit, dropped into next fork five
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: kill all one
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 0
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 1
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 2
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 3
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 4
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 5
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 6
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 7
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 8
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 9
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 10
new FAIL: gdb.base/checkpoint-ns.exp: exit, dropped into next fork one
new FAIL: gdb.base/checkpoint-ns.exp: exit, dropped into next fork two
new FAIL: gdb.base/checkpoint-ns.exp: exit, dropped into next fork three
new FAIL: gdb.base/checkpoint-ns.exp: exit, dropped into next fork four
new FAIL: gdb.base/checkpoint-ns.exp: exit, dropped into next fork five
new FAIL: gdb.base/checkpoint-ns.exp: info checkpoints two
new FAIL: gdb.base/checkpoint-ns.exp: kill all one
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 0
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 1
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 2
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 3
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 4
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 5
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 6
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 7
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 8
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 9
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 10
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: disp *p_i
new FAIL: gdb.base/display.exp: p p_i = 0x0
new FAIL: gdb.base/display.exp: display bad address
new FAIL: gdb.base/display.exp: p p_i = &i
new FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off
new FAIL: gdb.base/display.exp: finish
new FAIL: gdb.base/display.exp: step
new FAIL: gdb.base/display.exp: cont
new FAIL: gdb.base/display.exp: printf "%d%d",i
new FAIL: gdb.base/display.exp: print/k j
new FAIL: gdb.base/display.exp: debug test output 1
new FAIL: gdb.base/display.exp: debug test output 1a
new FAIL: gdb.base/display.exp: debug test output 2
new FAIL: gdb.base/display.exp: debug test output 2a
new FAIL: gdb.base/display.exp: debug test output 3
new FAIL: gdb.base/display.exp: x/0 j
new FAIL: gdb.base/display.exp: ignored s
new FAIL: gdb.base/display.exp: print/a $pc
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/pr11022.exp: watchpoint hit
new FAIL: gdb.base/pr11022.exp: watchpoint hit 2
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
new FAIL: gdb.base/recurse.exp: continue to recurse
new FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
new FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/value-double-free.exp: print empty
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: set static local watch
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
new FAIL: gdb.base/watchpoint.exp: watch $pc
new FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
new FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
new FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4
new FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
new FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
new FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
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/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: annotate-quit
new FAIL: gdb.cp/gdb2495.exp: call a function that raises an exception without a handler.
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame
new FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp: set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: turn off unwind on terminating exception flag
new FAIL: gdb.cp/gdb2495.exp: call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
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
new FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
new FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
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": watchpoint hit 2
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": watchpoint hit 2
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: reverse-finish from void_func trips breakpoint at entry
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: no spurious proceed after breakpoint stop
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from int_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from short_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from char_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from void_func
new FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: reverse-next over call trips user breakpoint at function entry
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: stopped at the right callee call
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
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: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
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
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 19:03 [binutils-gdb] Use gdbpy_enter in py-xmethod.c sergiodj+buildbot
@ 2017-01-16 18:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-16 18:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	14b122bf1ce59f5f1b82f6e2a347f4ad89801f45

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

Subject:
	Use gdbpy_enter in py-xmethod.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/14/14b122bf1ce59f5f1b82f6e2a347f4ad89801f45/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-12  5:21 [binutils-gdb] Use gdbpy_ref in invoke_match_method sergiodj+buildbot
@ 2017-01-16 14:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-16 14:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bf1ca3b9476185fb6e301d85e646f5d2af95e257

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

Subject:
	Use gdbpy_ref in invoke_match_method

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bf/bf1ca3b9476185fb6e301d85e646f5d2af95e257/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 14:43 [binutils-gdb] Use gdbpy_enter in python.c sergiodj+buildbot
@ 2017-01-15  3:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-15  3:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	60e600ec691255536ae53e365d0410ecf79bdea2

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

Subject:
	Use gdbpy_enter in python.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/60/60e600ec691255536ae53e365d0410ecf79bdea2/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 14:12 [binutils-gdb] Use gdbpy_enter in py-objfile.c sergiodj+buildbot
@ 2017-01-14 20:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-14 20:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2d38bcedc2f91692857d257e106dafc9269d8f1a

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

Subject:
	Use gdbpy_enter in py-objfile.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2d/2d38bcedc2f91692857d257e106dafc9269d8f1a/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 19:07 [binutils-gdb] Use gdbpy_enter in py-finishbreakpoint.c sergiodj+buildbot
@ 2017-01-14 11:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-14 11:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6e7c365ee0ea2551f9f840b71081fdf759088b5e

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

Subject:
	Use gdbpy_enter in py-finishbreakpoint.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6e/6e7c365ee0ea2551f9f840b71081fdf759088b5e/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 12:51 [binutils-gdb] Use gdbpy_enter in py-cmd.c sergiodj+buildbot
@ 2017-01-14  7:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-14  7:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6ba0cd406511d3edbe643f5e599d79538febedc5

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

Subject:
	Use gdbpy_enter in py-cmd.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6b/6ba0cd406511d3edbe643f5e599d79538febedc5/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 11:46 [binutils-gdb] Introduce gdbpy_enter sergiodj+buildbot
@ 2017-01-13 22:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-13 22:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4ecee2c47da3e91c0571683acb5cfb8400402663

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

Subject:
	Introduce gdbpy_enter

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4e/4ecee2c47da3e91c0571683acb5cfb8400402663/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11 11:14 [binutils-gdb] Use gdbpy_ref in py-value.c sergiodj+buildbot
@ 2017-01-13 14:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-13 14:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	53a0cca3bd0f6ae80b2d6fc34b2873046965c7f0

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

Subject:
	Use gdbpy_ref in py-value.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/53/53a0cca3bd0f6ae80b2d6fc34b2873046965c7f0/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11  9:54 [binutils-gdb] Use gdbpy_ref in call_doc_function sergiodj+buildbot
@ 2017-01-13  3:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-13  3:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1bb44c9f567c75355c1b4417d88cda959e82a3a3

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

Subject:
	Use gdbpy_ref in call_doc_function

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1b/1bb44c9f567c75355c1b4417d88cda959e82a3a3/>





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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11  7:59 [binutils-gdb] Use gdbpy_ref in py-framefilter.c sergiodj+buildbot
@ 2017-01-12 18:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-12 18:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ee0a3fb85b33b172f704796612c4487ea368d675

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

Subject:
	Use gdbpy_ref in py-framefilter.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ee/ee0a3fb85b33b172f704796612c4487ea368d675/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11  8:42 [binutils-gdb] Use gdbpy_ref in gdbpy_string_to_argv sergiodj+buildbot
@ 2017-01-12  2:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-12  2:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d1b3de2e43380a0c51772a40315cd2268573d985

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

Subject:
	Use gdbpy_ref in gdbpy_string_to_argv

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d1/d1b3de2e43380a0c51772a40315cd2268573d985/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-11  7:18 [binutils-gdb] Change event code to use gdbpy_ref sergiodj+buildbot
@ 2017-01-11 18:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-11 18:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	abf5651e47c0396df58a37951bc03a349169c5f2

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

Subject:
	Change event code to use gdbpy_ref

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ab/abf5651e47c0396df58a37951bc03a349169c5f2/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-10 19:51 [binutils-gdb] Don't use elf_i386_eh_frame_plt directly sergiodj+buildbot
@ 2017-01-11  1:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-11  1:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f129e49f4d07f4d36319ac757fdcf3a8ce7d605b

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Don't use elf_i386_eh_frame_plt directly

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f1/f129e49f4d07f4d36319ac757fdcf3a8ce7d605b/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-10 16:47 [binutils-gdb] Change return type of ui_out redirect to void sergiodj+buildbot
@ 2017-01-10 20:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-10 20:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7becfd03bad526c02216eeb5ec2bebae694b1af1

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

Subject:
	Change return type of ui_out redirect to void

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7b/7becfd03bad526c02216eeb5ec2bebae694b1af1/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-10  0:02 [binutils-gdb] Fix problems with the implementation of the uzp1 and uzp2 instructions sergiodj+buildbot
@ 2017-01-10  7:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-10  7:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a4fb5981b7ec3d4006e93141afb1d0da566bb97b

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Fix problems with the implementation of the uzp1 and uzp2 instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a4/a4fb5981b7ec3d4006e93141afb1d0da566bb97b/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-09 17:05 [binutils-gdb] Speed up objdump when displaying disassembly mixed with line number and source code information sergiodj+buildbot
@ 2017-01-10  0:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-10  0:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	cd6581da62c32a391f9a4c2c5d248a11aa6fa8f7

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

Subject:
	Speed up objdump when displaying disassembly mixed with line number and source code information.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cd6581da62c32a391f9a4c2c5d248a11aa6fa8f7/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-08 10:52 [binutils-gdb] [D] Fix crash when debug expression enabled sergiodj+buildbot
@ 2017-01-09 17:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-09 17:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f5e6296e2194add209b546ad49039753a10242f5

Author(s) (in the same order as the commits):
	Iain Buclaw <ibuclaw@gdcproject.org>

Subject:
	[D] Fix crash when debug expression enabled.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f5/f5e6296e2194add209b546ad49039753a10242f5/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-06 20:40 [binutils-gdb] Include gdb_proc_service.h in x86-linux-nat.h sergiodj+buildbot
@ 2017-01-09  2:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-09  2:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0e2d6fa6a38ae2b80a56d786a41d905c9541906f

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

Subject:
	Include gdb_proc_service.h in x86-linux-nat.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0e/0e2d6fa6a38ae2b80a56d786a41d905c9541906f/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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/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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-06 19:51 [binutils-gdb] Include serial.h in ser-base.h sergiodj+buildbot
@ 2017-01-08 22:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-08 22:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	44d6d3f93341387bd2c95ea4c941bf99127e7389

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

Subject:
	Include serial.h in ser-base.h.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/44/44d6d3f93341387bd2c95ea4c941bf99127e7389/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-06 17:58 [binutils-gdb] Include break-common.h in nat/aarch64-linux-hw-point.h sergiodj+buildbot
@ 2017-01-08 11:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-08 11:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bc3008c48f17aa67d39e539737a999737cd697a7

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

Subject:
	Include break-common.h in nat/aarch64-linux-hw-point.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bc/bc3008c48f17aa67d39e539737a999737cd697a7/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-06 15:00 [binutils-gdb] Include ax.h in ax-gdb.h sergiodj+buildbot
@ 2017-01-07 19:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-07 19:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c0b8369c8aa4e05bf8f1b2ce4a79133cf1192a16

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

Subject:
	Include ax.h in ax-gdb.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c0/c0b8369c8aa4e05bf8f1b2ce4a79133cf1192a16/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-06 14:17 [binutils-gdb] Update gdb_ptrace.h in HFILES_NO_SRCDIR sergiodj+buildbot
@ 2017-01-07 15:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-07 15:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ad5cba2adbdb8ec216d44515468bde8d96892c3d

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

Subject:
	Update gdb_ptrace.h in HFILES_NO_SRCDIR

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ad/ad5cba2adbdb8ec216d44515468bde8d96892c3d/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-05 15:02 [binutils-gdb] Fix ARI warning sergiodj+buildbot
@ 2017-01-07 11:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-07 11:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1c33cd7f00c7b2d195cdb004559332c397663bae

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

Subject:
	Fix ARI warning

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1c/1c33cd7f00c7b2d195cdb004559332c397663bae/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-05  9:19 [binutils-gdb] Prevent an abort in the FRV disassembler if the target bfd name is unknown sergiodj+buildbot
@ 2017-01-07  7:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-07  7:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0ae60c3ef45d41b34d40ed5c7b4fdfea289530de

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

Subject:
	Prevent an abort in the FRV disassembler if the target bfd name is unknown.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0a/0ae60c3ef45d41b34d40ed5c7b4fdfea289530de/>

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


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-05  0:23 [binutils-gdb] Five fixes, for fcsel, fcvtz, fminnm, mls, and non-widening mul sergiodj+buildbot
@ 2017-01-07  3:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-07  3:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c0386d4d54d2cc33d6efc0b998fe6396bf92be15

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Five fixes, for fcsel, fcvtz, fminnm, mls, and non-widening mul.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c0/c0386d4d54d2cc33d6efc0b998fe6396bf92be15/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04 20:32 [binutils-gdb] Use correct OSABI constant for FreeBSD/mips binaries sergiodj+buildbot
@ 2017-01-06 22:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-06 22:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c988ac1de5bc0efec2022fc6ce7d13b24e540099

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

Subject:
	Use correct OSABI constant for FreeBSD/mips binaries.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c9/c988ac1de5bc0efec2022fc6ce7d13b24e540099/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04 14:57 [binutils-gdb] update-copyright.py for binutils sergiodj+buildbot
@ 2017-01-06 14:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-06 14:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7c2a23b23e9ca7015acadbbc7a12c665791c8337

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	update-copyright.py for binutils

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7c/7c2a23b23e9ca7015acadbbc7a12c665791c8337/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04 14:42 [binutils-gdb] Sync libiberty from gcc sergiodj+buildbot
@ 2017-01-06 10:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-06 10:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e495212d229d58eb4d70c94d7f828a04c386c3b2

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Sync libiberty from gcc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e4/e495212d229d58eb4d70c94d7f828a04c386c3b2/>

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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04 10:10 [binutils-gdb] Fix an internal error on writing pieced value sergiodj+buildbot
@ 2017-01-05 22:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-05 22:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	2aaaf250e80afb4a5c66fb0b7801e24cc5c4e680

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

Subject:
	Fix an internal error on writing pieced value

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2a/2aaaf250e80afb4a5c66fb0b7801e24cc5c4e680/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: 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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04  3:56 [binutils-gdb] bfd: alpha: Fix crash caused by double free with --no-keep-memory sergiodj+buildbot
@ 2017-01-05 18:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-05 18:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	ae4fda663812129df67e3a70691787060242c0f9

Author(s) (in the same order as the commits):
	James Clarke <jrtc27@jrtc27.com>

Subject:
	bfd: alpha: Fix crash caused by double free with --no-keep-memory

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ae/ae4fda663812129df67e3a70691787060242c0f9/>

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


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04  3:42 [binutils-gdb] Add support for the Q extension to the RISCV ISA sergiodj+buildbot
@ 2017-01-05 14:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-05 14:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	cc917fd93d2a836adfd61b91df021cf835e88fd1

Author(s) (in the same order as the commits):
	Kito Cheng <kito.cheng@gmail.com>

Subject:
	Add support for the Q extension to the RISCV ISA.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cc/cc917fd93d2a836adfd61b91df021cf835e88fd1/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04  3:11 [binutils-gdb] Add fall through comment sergiodj+buildbot
@ 2017-01-05  7:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-05  7:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b52d3cfcfb472263eca181da37dfc0377978acba

Author(s) (in the same order as the commits):
	Dilyan Palauzov <dilyan.palauzov@aegee.org>

Subject:
	Add fall through comment.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b5/b52d3cfcfb472263eca181da37dfc0377978acba/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04  1:38 [binutils-gdb] Fix compile time warning about using a possibly uninitialised variable sergiodj+buildbot
@ 2017-01-04 23:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-04 23:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	09fe2662a708aa4da665bcaf942b5529e6809220

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

Subject:
	Fix compile time warning about using a possibly uninitialised variable.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/09/09fe2662a708aa4da665bcaf942b5529e6809220/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04  2:06 [binutils-gdb] Regen opcodes cgen files sergiodj+buildbot
@ 2017-01-04 15:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-04 15:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f47b0d4a49facbfa5c2f0971474593df0a854547

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Regen opcodes cgen files

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f4/f47b0d4a49facbfa5c2f0971474593df0a854547/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
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/continue-pending-status.exp: no thread starvation
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2017-01-04  1:22 [binutils-gdb] Don't make symbols dynamic other than undef weak sergiodj+buildbot
@ 2017-01-04 11:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2017-01-04 11:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	595e0a47f57b414843261303b8aa5036fd1fa1e3

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Don't make symbols dynamic other than undef weak

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/59/595e0a47f57b414843261303b8aa5036fd1fa1e3/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-31  9:11 [binutils-gdb] Create sdynrelro for elfn32 mips too sergiodj+buildbot
@ 2016-12-31 19:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-31 19:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b7aba156196caf59117741eae5e93b578d0b59f4

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Create sdynrelro for elfn32 mips too

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b7/b7aba156196caf59117741eae5e93b578d0b59f4/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: switch to inferior 2
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-31  4:19 [binutils-gdb] PRU Opcode Port sergiodj+buildbot
@ 2016-12-31 15:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-31 15:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	111468496477e97c9414d2d54f97bfdaa380f794

Author(s) (in the same order as the commits):
	Dimitar Dimitrov <dimitar@dinux.eu>

Subject:
	PRU Opcode Port

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/11/111468496477e97c9414d2d54f97bfdaa380f794/>

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


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-28 13:44 [binutils-gdb] Check bfd support for bfd_mips_elf_get_abiflags in mips make rule sergiodj+buildbot
@ 2016-12-30 12:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-30 12:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0fa6f7cee7dedb600799234b1e2d52c5b0da8f96

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Check bfd support for bfd_mips_elf_get_abiflags in mips make rule

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0f/0fa6f7cee7dedb600799234b1e2d52c5b0da8f96/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-26  6:54 [binutils-gdb] dynrelro section for read-only dynamic symbols copied into executable sergiodj+buildbot
@ 2016-12-30  1:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-30  1:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5474d94f03aedba2f832006dc7d680cc15792a7b

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	dynrelro section for read-only dynamic symbols copied into executable

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/54/5474d94f03aedba2f832006dc7d680cc15792a7b/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=1fb30a6>

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-ppc64le-m64/xfails/master/xfail.table;hb=1fb30a6>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-24  3:33 [binutils-gdb] MIPS/BFD: Remove EI_ABIVERSION 5 allocation for PT_GNU_STACK support sergiodj+buildbot
@ 2016-12-29 13:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-29 13:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4d4f40e041ce7c8c7c8e50f957e0440b64ab7e95

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

Subject:
	MIPS/BFD: Remove EI_ABIVERSION 5 allocation for PT_GNU_STACK support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4d/4d4f40e041ce7c8c7c8e50f957e0440b64ab7e95/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: switch to inferior 2
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-23 22:22 [binutils-gdb] MIPS16: Simplify extended operand handling sergiodj+buildbot
@ 2016-12-29  3:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-29  3:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	bdd152861ce75c36828904cf3d10f8ce14da6cf5

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

Subject:
	MIPS16: Simplify extended operand handling

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bd/bdd152861ce75c36828904cf3d10f8ce14da6cf5/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-24  0:33 [binutils-gdb] MIPS16: Reassign `0' and `4' operand codes sergiodj+buildbot
@ 2016-12-29  0:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-29  0:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d8722d7641d234dcd3d1f2254fbc5d9cf234e4e6

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

Subject:
	MIPS16: Reassign `0' and `4' operand codes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d8/d8722d7641d234dcd3d1f2254fbc5d9cf234e4e6/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/wp-replication.exp: Thread 9 hit breakpoint at thread_started
PASS -> FAIL: gdb.threads/wp-replication.exp: set var test_ready=1
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-23 21:34 [binutils-gdb] MIPS16/GAS: Disallow EXTEND delay-slot scheduling sergiodj+buildbot
@ 2016-12-28 12:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-28 12:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	645c455650ed35460afdacb078c7c58308607fbe

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

Subject:
	MIPS16/GAS: Disallow EXTEND delay-slot scheduling

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/64/645c455650ed35460afdacb078c7c58308607fbe/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-23 20:03 [binutils-gdb] Fix more cases of improper test names sergiodj+buildbot
@ 2016-12-28  3:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-28  3:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5b362f04b2a56d446b024027963be52d61f939cb

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix more cases of improper test names

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5b/5b362f04b2a56d446b024027963be52d61f939cb/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-23 12:50 [binutils-gdb] Updated email address sergiodj+buildbot
@ 2016-12-27  6:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-27  6:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6096dda15babc5307b1a0e9624d4e0028fd429e1

Author(s) (in the same order as the commits):
	Bernhard Heckel <bernhard.heckel@intel.com>

Subject:
	Updated email address.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/60/6096dda15babc5307b1a0e9624d4e0028fd429e1/>

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


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-21 15:21 [binutils-gdb] Don't make_bfd_vms_lib archive functions NULL sergiodj+buildbot
@ 2016-12-25 20:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-25 20:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f0d19df99dfe1c63842206d15ae41dfd33d25bf0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Don't make_bfd_vms_lib archive functions NULL

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f0/f0d19df99dfe1c63842206d15ae41dfd33d25bf0/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-21 14:46 [binutils-gdb] Avoid creating symbol table entries for registers sergiodj+buildbot
@ 2016-12-25 17:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-25 17:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	58a6d3c9d8d4d4be8f1dfc1a49fed264dceddaba

Author(s) (in the same order as the commits):
	Andrew Waterman <andrew@sifive.com>

Subject:
	Avoid creating symbol table entries for registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/58/58a6d3c9d8d4d4be8f1dfc1a49fed264dceddaba/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-20 15:08 [binutils-gdb] MIPS16/opcodes: Respect ISA and ASE in disassembly sergiodj+buildbot
@ 2016-12-24 13:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-24 13:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	11dd08e9a0a2b7115aac32d9599f1bdb0ad12ea6

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

Subject:
	MIPS16/opcodes: Respect ISA and ASE in disassembly

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/11/11dd08e9a0a2b7115aac32d9599f1bdb0ad12ea6/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-20 14:09 [binutils-gdb] MIPS16/opcodes: Correct 64-bit macros' ISA membership sergiodj+buildbot
@ 2016-12-24  4:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-24  4:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4ebce1a0a5911e71aa2d00932ffb2126ff1f3633

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

Subject:
	MIPS16/opcodes: Correct 64-bit macros' ISA membership

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4e/4ebce1a0a5911e71aa2d00932ffb2126ff1f3633/>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/pthreads.exp: continue until common routine run 15 times
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-20  2:06 [binutils-gdb] Correct assembler mnemonic for RISC-V aqrl AMOs sergiodj+buildbot
@ 2016-12-23 21:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-23 21:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3e67a37820a2838cdbd50f3f697ddc929443ceaa

Author(s) (in the same order as the commits):
	Andrew Waterman <andrew@sifive.com>

Subject:
	Correct assembler mnemonic for RISC-V aqrl AMOs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3e/3e67a37820a2838cdbd50f3f697ddc929443ceaa/>

*** Diff to previous build ***
============================
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ec742b0>

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-ppc64le-m64/xfails/master/xfail.table;hb=ec742b0>




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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (74 preceding siblings ...)
  2016-12-22 21:19 ` sergiodj+buildbot
@ 2016-12-22 21:24 ` sergiodj+buildbot
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 21:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1d65abb5e2cb1624b358dda27a53a070bec685cc

Author(s) (in the same order as the commits):
	Andrew Waterman <andrew@sifive.com>

Subject:
	Formatting changes for RISC-V

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1d/1d65abb5e2cb1624b358dda27a53a070bec685cc/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (73 preceding siblings ...)
  2016-12-22 19:15 ` sergiodj+buildbot
@ 2016-12-22 21:19 ` sergiodj+buildbot
  2016-12-22 21:24 ` sergiodj+buildbot
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 21:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	96b0927de3ebdb302d8d571c43da3db5ec23847e

Author(s) (in the same order as the commits):
	Palmer Dabbelt <palmer@dabbelt.com>

Subject:
	Improve RISC-V LD error message

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/96/96b0927de3ebdb302d8d571c43da3db5ec23847e/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (72 preceding siblings ...)
  2016-12-22 18:34 ` sergiodj+buildbot
@ 2016-12-22 19:15 ` sergiodj+buildbot
  2016-12-22 21:19 ` sergiodj+buildbot
  2016-12-22 21:24 ` sergiodj+buildbot
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 19:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	dd1d944e2321de26f75a21f42750dd38ed964714

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Add opcodes RISC-V dependencies

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/dd/dd1d944e2321de26f75a21f42750dd38ed964714/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (71 preceding siblings ...)
  2016-12-22 17:13 ` sergiodj+buildbot
@ 2016-12-22 18:34 ` sergiodj+buildbot
  2016-12-22 19:15 ` sergiodj+buildbot
                   ` (2 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 18:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	16e69324ec7fbe4ea12f2a0a069ad207ac8e3f97

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

Subject:
	Clean up gdb.gdb/selftest.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/16/16e69324ec7fbe4ea12f2a0a069ad207ac8e3f97/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (70 preceding siblings ...)
  2016-12-22 15:52 ` sergiodj+buildbot
@ 2016-12-22 17:13 ` sergiodj+buildbot
  2016-12-22 18:34 ` sergiodj+buildbot
                   ` (3 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 17:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b25e998d0be7d7ec2a14bfdca03370155355d215

Author(s) (in the same order as the commits):
	Christian Groessler <chris@groessler.org>

Subject:
	bfd/elf32-arm.c: Rename 'popcount' to 'elf32_arm_popcount'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b2/b25e998d0be7d7ec2a14bfdca03370155355d215/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (69 preceding siblings ...)
  2016-12-22 13:08 ` sergiodj+buildbot
@ 2016-12-22 15:52 ` sergiodj+buildbot
  2016-12-22 17:13 ` sergiodj+buildbot
                   ` (4 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 15:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	91068ec6ae02e85c5ca4fbe3c6e214bd87bb872f

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

Subject:
	MIPS/opcodes: Only examine ELF file structures if SYMTAB_AVAILABLE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/91/91068ec6ae02e85c5ca4fbe3c6e214bd87bb872f/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (68 preceding siblings ...)
  2016-12-22 11:46 ` sergiodj+buildbot
@ 2016-12-22 13:08 ` sergiodj+buildbot
  2016-12-22 15:52 ` sergiodj+buildbot
                   ` (5 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 13:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4df995c77118d07c12fb260dbba0ca2b281324f1

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

Subject:
	MIPS/opcodes: Only call `bfd_mips_elf_get_abiflags' if BFD64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4d/4df995c77118d07c12fb260dbba0ca2b281324f1/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (67 preceding siblings ...)
  2016-12-22  7:37 ` sergiodj+buildbot
@ 2016-12-22 11:46 ` sergiodj+buildbot
  2016-12-22 13:08 ` sergiodj+buildbot
                   ` (6 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22 11:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	97f00e367c8222cda51bc7c0e9d3073a487a5976

Author(s) (in the same order as the commits):
	Bernhard Heckel <bernhard.heckel@intel.com>

Subject:
	Darwin: Fix gdb compilation.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/97/97f00e367c8222cda51bc7c0e9d3073a487a5976/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (66 preceding siblings ...)
  2016-12-22  6:58 ` sergiodj+buildbot
@ 2016-12-22  7:37 ` sergiodj+buildbot
  2016-12-22 11:46 ` sergiodj+buildbot
                   ` (7 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  7:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	db7b55faa1a11e632ddf57505c9bb64bc783471a

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

Subject:
	Fix compile time warning building arm-dis.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/db/db7b55faa1a11e632ddf57505c9bb64bc783471a/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (65 preceding siblings ...)
  2016-12-22  6:36 ` sergiodj+buildbot
@ 2016-12-22  6:58 ` sergiodj+buildbot
  2016-12-22  7:37 ` sergiodj+buildbot
                   ` (8 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  6:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	221855059a11ab76aa909a5df4104354f9384139

Author(s) (in the same order as the commits):
	fincs <fincs.alt1@gmail.com>

Subject:
	Implement and document --gc-keep-exported

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/22/221855059a11ab76aa909a5df4104354f9384139/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (64 preceding siblings ...)
  2016-12-22  4:52 ` sergiodj+buildbot
@ 2016-12-22  6:36 ` sergiodj+buildbot
  2016-12-22  6:58 ` sergiodj+buildbot
                   ` (9 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  6:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a961cdd5f139d3c3e09170db52bd8df7dafae13f

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Linking non-ELF file broken by PR20908 fix

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a9/a961cdd5f139d3c3e09170db52bd8df7dafae13f/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (63 preceding siblings ...)
  2016-12-22  3:31 ` sergiodj+buildbot
@ 2016-12-22  4:52 ` sergiodj+buildbot
  2016-12-22  6:36 ` sergiodj+buildbot
                   ` (10 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  4:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	cadf97cf20cf76af35e41075dff81197fbec0e51

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

Subject:
	MAINTAINERS: Add myself as a MIPS maintainer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ca/cadf97cf20cf76af35e41075dff81197fbec0e51/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (62 preceding siblings ...)
  2016-12-22  2:09 ` sergiodj+buildbot
@ 2016-12-22  3:31 ` sergiodj+buildbot
  2016-12-22  4:52 ` sergiodj+buildbot
                   ` (11 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  3:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5e7fc731f80e0d08385a05ad47dda332a49d9341

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

Subject:
	MIPS/opcodes: Also set disassembler's ASE flags from ELF structures

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5e/5e7fc731f80e0d08385a05ad47dda332a49d9341/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (61 preceding siblings ...)
  2016-12-22  0:23 ` sergiodj+buildbot
@ 2016-12-22  2:09 ` sergiodj+buildbot
  2016-12-22  3:31 ` sergiodj+buildbot
                   ` (12 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  2:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8184783a4069e04deb2e43b4ad0d66d80f1ad2df

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

Subject:
	MIPS/opcodes: Reorder ELF file header flag handling in disassembler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/81/8184783a4069e04deb2e43b4ad0d66d80f1ad2df/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (60 preceding siblings ...)
  2016-12-21 20:53 ` sergiodj+buildbot
@ 2016-12-22  0:23 ` sergiodj+buildbot
  2016-12-22  2:09 ` sergiodj+buildbot
                   ` (13 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-22  0:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	353abf7c10561aab3e8e7ffce6e270c3743376f0

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

Subject:
	MIPS16: Fix SP-relative SD instruction annotation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/35/353abf7c10561aab3e8e7ffce6e270c3743376f0/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (59 preceding siblings ...)
  2016-12-21 20:51 ` sergiodj+buildbot
@ 2016-12-21 20:53 ` sergiodj+buildbot
  2016-12-22  0:23 ` sergiodj+buildbot
                   ` (14 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 20:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	63e014fccdd91a89873554f6b33d7128d7112813

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

Subject:
	MIPS16/opcodes: Fix and clarify MIPS16e commentary

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/63/63e014fccdd91a89873554f6b33d7128d7112813/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (58 preceding siblings ...)
  2016-12-21 20:45 ` sergiodj+buildbot
@ 2016-12-21 20:51 ` sergiodj+buildbot
  2016-12-21 20:53 ` sergiodj+buildbot
                   ` (15 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 20:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c1fc2d7ee590f3bc87ee79c36e7216b0b6bb054b

Author(s) (in the same order as the commits):
	Yury Norov <ynorov@caviumnetworks.com>

Subject:
	ld: aarch64: fix TLS relaxation where TCB_SIZE is used

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c1/c1fc2d7ee590f3bc87ee79c36e7216b0b6bb054b/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (57 preceding siblings ...)
  2016-12-21 19:48 ` sergiodj+buildbot
@ 2016-12-21 20:45 ` sergiodj+buildbot
  2016-12-21 20:51 ` sergiodj+buildbot
                   ` (16 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 20:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	7acd51d6971f12b832cd7281f669a7ae7feddf45

Author(s) (in the same order as the commits):
	Yury Norov <ynorov@caviumnetworks.com>

Subject:
	Revert "bfd: aarch64: fix word and arrdess size declaration in ilp32 mode"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7a/7acd51d6971f12b832cd7281f669a7ae7feddf45/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (56 preceding siblings ...)
  2016-12-21 16:42 ` sergiodj+buildbot
@ 2016-12-21 19:48 ` sergiodj+buildbot
  2016-12-21 20:45 ` sergiodj+buildbot
                   ` (17 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 19:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	98fa61facff8fb041205950d642f5403372bfd96

Author(s) (in the same order as the commits):
	Yury Norov <ynorov@caviumnetworks.com>

Subject:
	Revert "ld: aarch64: fix TLS relaxation where TCB_SIZE is used"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/98/98fa61facff8fb041205950d642f5403372bfd96/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (55 preceding siblings ...)
  2016-12-21 14:27 ` sergiodj+buildbot
@ 2016-12-21 16:42 ` sergiodj+buildbot
  2016-12-21 19:48 ` sergiodj+buildbot
                   ` (18 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 16:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a02c3512655cc2c8ad68e4b656959b7d284acc7d

Author(s) (in the same order as the commits):
	Yury Norov <ynorov@caviumnetworks.com>

Subject:
	bfd: aarch64: fix word and arrdess size declaration in ilp32 mode

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a0/a02c3512655cc2c8ad68e4b656959b7d284acc7d/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (54 preceding siblings ...)
  2016-12-21 13:07 ` sergiodj+buildbot
@ 2016-12-21 14:27 ` sergiodj+buildbot
  2016-12-21 16:42 ` sergiodj+buildbot
                   ` (19 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 14:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6650f7bd18f8161b9f666d3e65a6346e23a9d85f

Author(s) (in the same order as the commits):
	Yury Norov <ynorov@caviumnetworks.com>

Subject:
	ld: aarch64: fix TLS relaxation where TCB_SIZE is used

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/66/6650f7bd18f8161b9f666d3e65a6346e23a9d85f/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (53 preceding siblings ...)
  2016-12-21 11:33 ` sergiodj+buildbot
@ 2016-12-21 13:07 ` sergiodj+buildbot
  2016-12-21 14:27 ` sergiodj+buildbot
                   ` (20 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 13:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a6a51754740513db76fdee3aa153cdd51e87a24a

Author(s) (in the same order as the commits):
	Renlin Li <renlin.li@arm.com>

Subject:
	[Binutils][AARCH64]Remove Cn register for coprocessor CRn, CRm field

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a6/a6a51754740513db76fdee3aa153cdd51e87a24a/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (51 preceding siblings ...)
  2016-12-21 11:19 ` sergiodj+buildbot
@ 2016-12-21 11:33 ` sergiodj+buildbot
  2016-12-21 11:33 ` sergiodj+buildbot
                   ` (22 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 11:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	22b05d33b4c870d65972ff8aefdd297ddc66d139

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Don't add PHDR for objcopy/strip or ld script specifying PHDRS

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/22/22b05d33b4c870d65972ff8aefdd297ddc66d139/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (52 preceding siblings ...)
  2016-12-21 11:33 ` sergiodj+buildbot
@ 2016-12-21 11:33 ` sergiodj+buildbot
  2016-12-21 13:07 ` sergiodj+buildbot
                   ` (21 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 11:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	963201cf5d29c4dc718b5fb3507e085b302ff896

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Fix aarch64 sim bug with adds64, and add testcases for last 3 bug fixes.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/96/963201cf5d29c4dc718b5fb3507e085b302ff896/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (50 preceding siblings ...)
  2016-12-21  8:37 ` sergiodj+buildbot
@ 2016-12-21 11:19 ` sergiodj+buildbot
  2016-12-21 11:33 ` sergiodj+buildbot
                   ` (23 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21 11:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6392030005291f7c783da2247b63ae31dc8352e0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Don't fudge p_vaddr when PHDR in segment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/63/6392030005291f7c783da2247b63ae31dc8352e0/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (49 preceding siblings ...)
  2016-12-21  2:53 ` sergiodj+buildbot
@ 2016-12-21  8:37 ` sergiodj+buildbot
  2016-12-21 11:19 ` sergiodj+buildbot
                   ` (24 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21  8:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	88acc2e16743fc1e6384758c9a68cd6d2a8bbd46

Author(s) (in the same order as the commits):
	Nathan Sidwell <nathan@acm.org>

Subject:
	Port c++/78252 from GCC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/88/88acc2e16743fc1e6384758c9a68cd6d2a8bbd46/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (48 preceding siblings ...)
  2016-12-21  2:27 ` sergiodj+buildbot
@ 2016-12-21  2:53 ` sergiodj+buildbot
  2016-12-21  8:37 ` sergiodj+buildbot
                   ` (25 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21  2:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	d36cab83a963f5bb3773e0218cc02f63b0851d0b

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

Subject:
	Remove assert on exec_bfd in cris_delayed_get_disassembler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d3/d36cab83a963f5bb3773e0218cc02f63b0851d0b/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (47 preceding siblings ...)
  2016-12-21  1:26 ` sergiodj+buildbot
@ 2016-12-21  2:27 ` sergiodj+buildbot
  2016-12-21  2:53 ` sergiodj+buildbot
                   ` (26 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21  2:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	029e9d52de3ac7fe984dc079ebd24506fd1eace7

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

Subject:
	Handle memory error in print_insn_rx

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/02/029e9d52de3ac7fe984dc079ebd24506fd1eace7/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (46 preceding siblings ...)
  2016-12-20 21:39 ` sergiodj+buildbot
@ 2016-12-21  1:26 ` sergiodj+buildbot
  2016-12-21  2:27 ` sergiodj+buildbot
                   ` (27 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-21  1:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3a0b8f7ddb874283879baaf8af6d11094f4c4999

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

Subject:
	Handle memory error in print_insn_rl78_common

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3a/3a0b8f7ddb874283879baaf8af6d11094f4c4999/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (45 preceding siblings ...)
  2016-12-20 19:55 ` sergiodj+buildbot
@ 2016-12-20 21:39 ` sergiodj+buildbot
  2016-12-21  1:26 ` sergiodj+buildbot
                   ` (28 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20 21:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	64c111834081a117f902cffc15dadbc535f1c65e

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

Subject:
	MIPS16: Remove unused `>' operand code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/64/64c111834081a117f902cffc15dadbc535f1c65e/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (44 preceding siblings ...)
  2016-12-20 18:35 ` sergiodj+buildbot
@ 2016-12-20 19:55 ` sergiodj+buildbot
  2016-12-20 21:39 ` sergiodj+buildbot
                   ` (29 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20 19:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f17ecb4baca990b57cc57e8337c4e03ecee02742

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

Subject:
	MIPS16/opcodes: Use hexadecimal interpretation for the `e' operand code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f1/f17ecb4baca990b57cc57e8337c4e03ecee02742/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (43 preceding siblings ...)
  2016-12-20 17:36 ` sergiodj+buildbot
@ 2016-12-20 18:35 ` sergiodj+buildbot
  2016-12-20 19:55 ` sergiodj+buildbot
                   ` (30 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20 18:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	55af478400524cba7994e353fd9a98ef1543df2f

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

Subject:
	MIPS16/opcodes: Reformat raw EXTEND and undecoded output

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/55/55af478400524cba7994e353fd9a98ef1543df2f/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (42 preceding siblings ...)
  2016-12-20 11:53 ` sergiodj+buildbot
@ 2016-12-20 17:36 ` sergiodj+buildbot
  2016-12-20 18:35 ` sergiodj+buildbot
                   ` (31 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20 17:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1736a7bd96e8927c3f889a35f9153df4fd19d833

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

Subject:
	gdb: Remove support for obsolete OSABIs and a.out

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/17/1736a7bd96e8927c3f889a35f9153df4fd19d833/>

*** Failed to update master GDB git repository.  The build can continue. ***

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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (41 preceding siblings ...)
  2016-12-20 10:55 ` sergiodj+buildbot
@ 2016-12-20 11:53 ` sergiodj+buildbot
  2016-12-20 17:36 ` sergiodj+buildbot
                   ` (32 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20 11:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a28aa6edd4ba848c110cd73fd4e29c2bbdb2cb72

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

Subject:
	Create tdep->rx_psw_type and tdep->rx_fpsw_type lazily

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a2/a28aa6edd4ba848c110cd73fd4e29c2bbdb2cb72/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (40 preceding siblings ...)
  2016-12-20  9:31 ` sergiodj+buildbot
@ 2016-12-20 10:55 ` sergiodj+buildbot
  2016-12-20 11:53 ` sergiodj+buildbot
                   ` (33 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20 10:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	1a31b34a18d61dee55042f2ab23c8fa9203fe6ef

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-ppc64le-m64/1a/1a31b34a18d61dee55042f2ab23c8fa9203fe6ef/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (39 preceding siblings ...)
  2016-12-20  6:23 ` sergiodj+buildbot
@ 2016-12-20  9:31 ` sergiodj+buildbot
  2016-12-20 10:55 ` sergiodj+buildbot
                   ` (34 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20  9:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	f1b5deee16144a75aa605bf37ed38d461587d399

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

Subject:
	Add test that exercises all bfd architecture, osabi, endian, etc. combinations

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f1/f1b5deee16144a75aa605bf37ed38d461587d399/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (38 preceding siblings ...)
  2016-12-20  5:37 ` sergiodj+buildbot
@ 2016-12-20  6:23 ` sergiodj+buildbot
  2016-12-20  9:31 ` sergiodj+buildbot
                   ` (35 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20  6:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	fc2f703edb656c69b0026a006c6063cdb255e06a

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

Subject:
	Use code cache in aarch64 prologue analyzer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/fc/fc2f703edb656c69b0026a006c6063cdb255e06a/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (37 preceding siblings ...)
  2016-12-20  2:41 ` sergiodj+buildbot
@ 2016-12-20  5:37 ` sergiodj+buildbot
  2016-12-20  6:23 ` sergiodj+buildbot
                   ` (36 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20  5:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	198cd59d289209ad63cdd6da45e02a1c12b423a7

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

Subject:
	Use code cache in arm prologue analyzer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/19/198cd59d289209ad63cdd6da45e02a1c12b423a7/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (36 preceding siblings ...)
  2016-12-20  2:02 ` sergiodj+buildbot
@ 2016-12-20  2:41 ` sergiodj+buildbot
  2016-12-20  5:37 ` sergiodj+buildbot
                   ` (37 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20  2:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	364ca42e71dfdce3f34e97ef028f7e3d5b5d880e

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

Subject:
	Compile gdb.perf/skip-prologue.c with and without debug info

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/36/364ca42e71dfdce3f34e97ef028f7e3d5b5d880e/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (35 preceding siblings ...)
  2016-12-19 23:54 ` sergiodj+buildbot
@ 2016-12-20  2:02 ` sergiodj+buildbot
  2016-12-20  2:41 ` sergiodj+buildbot
                   ` (38 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-20  2:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c752a4cccb99ba73f51eff74b394dcdcd26d4c59

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd: Adjust to changes to "push pruning old threads down to the target"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c7/c752a4cccb99ba73f51eff74b394dcdcd26d4c59/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (34 preceding siblings ...)
  2016-12-19 23:05 ` sergiodj+buildbot
@ 2016-12-19 23:54 ` sergiodj+buildbot
  2016-12-20  2:02 ` sergiodj+buildbot
                   ` (39 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 23:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	53488a6e194af11c2528e5e284facb8a6171b695

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Avoid PATH_MAX usage

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/53/53488a6e194af11c2528e5e284facb8a6171b695/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (33 preceding siblings ...)
  2016-12-19 21:07 ` sergiodj+buildbot
@ 2016-12-19 23:05 ` sergiodj+buildbot
  2016-12-19 23:54 ` sergiodj+buildbot
                   ` (40 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 23:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	39f66f3ae25ebd3a065218ce880280fd5b4b861c

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

Subject:
	MIPS16/opcodes: Fix off-by-one indentation in `print_mips16_insn_arg'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/39/39f66f3ae25ebd3a065218ce880280fd5b4b861c/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (32 preceding siblings ...)
  2016-12-19 19:54 ` sergiodj+buildbot
@ 2016-12-19 21:07 ` sergiodj+buildbot
  2016-12-19 23:05 ` sergiodj+buildbot
                   ` (41 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 21:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	860b03a8f357d1565bd9d79ae25121059b2d28ae

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

Subject:
	MIPS16/opcodes: Fix PC-relative operation delay-slot adjustment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/86/860b03a8f357d1565bd9d79ae25121059b2d28ae/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (31 preceding siblings ...)
  2016-12-19 17:42 ` sergiodj+buildbot
@ 2016-12-19 19:54 ` sergiodj+buildbot
  2016-12-19 21:07 ` sergiodj+buildbot
                   ` (42 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 19:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	329d01f70ea6367a9593c9b31e268c06dd729ec9

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

Subject:
	AArch64/opcodes: Correct another `index' global shadowing error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/32/329d01f70ea6367a9593c9b31e268c06dd729ec9/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (30 preceding siblings ...)
  2016-12-19 15:05 ` sergiodj+buildbot
@ 2016-12-19 17:42 ` sergiodj+buildbot
  2016-12-19 19:54 ` sergiodj+buildbot
                   ` (43 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 17:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	3a2488dd21a895df3ffb49048f5de1a83ce2ddd4

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix crash when disassembling invalid range on powerpc vle

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3a/3a2488dd21a895df3ffb49048f5de1a83ce2ddd4/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (29 preceding siblings ...)
  2016-12-19 13:05 ` sergiodj+buildbot
@ 2016-12-19 15:05 ` sergiodj+buildbot
  2016-12-19 17:42 ` sergiodj+buildbot
                   ` (44 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 15:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	da17fe9de923fcee29e6f809693eb7e590966575

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	sync binutils config/ with gcc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/da/da17fe9de923fcee29e6f809693eb7e590966575/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (28 preceding siblings ...)
  2016-12-19 11:44 ` sergiodj+buildbot
@ 2016-12-19 13:05 ` sergiodj+buildbot
  2016-12-19 15:05 ` sergiodj+buildbot
                   ` (45 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 13:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	8e2a4f11d477986aa360a3b588d35a194efe58f8

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR20932, Internal error during record link assignment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8e/8e2a4f11d477986aa360a3b588d35a194efe58f8/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (27 preceding siblings ...)
  2016-12-19 11:12 ` sergiodj+buildbot
@ 2016-12-19 11:44 ` sergiodj+buildbot
  2016-12-19 13:05 ` sergiodj+buildbot
                   ` (46 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 11:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c3187fa5cc72734e6fc766a85d657018c0516bad

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

Subject:
	Hurd: In the CLI, use parse_thread_id instead of global_thread_id_to_ptid

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c3/c3187fa5cc72734e6fc766a85d657018c0516bad/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (26 preceding siblings ...)
  2016-12-19  9:56 ` sergiodj+buildbot
@ 2016-12-19 11:12 ` sergiodj+buildbot
  2016-12-19 11:44 ` sergiodj+buildbot
                   ` (47 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19 11:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	21389b7f3451a482e14fef9bd32257c4c87f4317

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd, C++: Mach/Hurd headers and MIG stubs are not yet fit for C++

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/21/21389b7f3451a482e14fef9bd32257c4c87f4317/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (25 preceding siblings ...)
  2016-12-19  6:44 ` sergiodj+buildbot
@ 2016-12-19  9:56 ` sergiodj+buildbot
  2016-12-19 11:12 ` sergiodj+buildbot
                   ` (48 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19  9:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	0947023d1d4b5d8803a1065d622f707010b2bcdc

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd, C++: kern_return_t vs. error_t

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/09/0947023d1d4b5d8803a1065d622f707010b2bcdc/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (24 preceding siblings ...)
  2016-12-19  5:38 ` sergiodj+buildbot
@ 2016-12-19  6:44 ` sergiodj+buildbot
  2016-12-19  9:56 ` sergiodj+buildbot
                   ` (49 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19  6:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	785102a7d34f2d48f9a1616bf931fea6de2385fb

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd, C++: Avoid "const char *" to "char *" casts

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/78/785102a7d34f2d48f9a1616bf931fea6de2385fb/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (23 preceding siblings ...)
  2016-12-19  4:10 ` sergiodj+buildbot
@ 2016-12-19  5:38 ` sergiodj+buildbot
  2016-12-19  6:44 ` sergiodj+buildbot
                   ` (50 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19  5:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	a9617a426d001a748168fbc399fcc77e6d8d3cac

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd, C++: Avoid GNU C nested functions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a9/a9617a426d001a748168fbc399fcc77e6d8d3cac/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (22 preceding siblings ...)
  2016-12-19  2:17 ` sergiodj+buildbot
@ 2016-12-19  4:10 ` sergiodj+buildbot
  2016-12-19  5:38 ` sergiodj+buildbot
                   ` (51 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19  4:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	e9e431d19426a6dd6b8923850398b847af0a1532

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd, C++: Explicitly cast "void *"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e9/e9e431d19426a6dd6b8923850398b847af0a1532/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (21 preceding siblings ...)
  2016-12-19  0:29 ` sergiodj+buildbot
@ 2016-12-19  2:17 ` sergiodj+buildbot
  2016-12-19  4:10 ` sergiodj+buildbot
                   ` (52 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19  2:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	14f6890677849172a4b13779acd9089c9baa3a81

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd: Adjust to "Per-inferior/Inferior-qualified thread IDs" changes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/14/14f6890677849172a4b13779acd9089c9baa3a81/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (20 preceding siblings ...)
  2016-12-18 22:49 ` sergiodj+buildbot
@ 2016-12-19  0:29 ` sergiodj+buildbot
  2016-12-19  2:17 ` sergiodj+buildbot
                   ` (53 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-19  0:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4b0781150f69b6ff251dac447c77e4d4f6598da8

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

Subject:
	MIPS/include: opcode/mips.h: Correct INSN_CHIP_MASK

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4b/4b0781150f69b6ff251dac447c77e4d4f6598da8/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (19 preceding siblings ...)
  2016-12-18 21:07 ` sergiodj+buildbot
@ 2016-12-18 22:49 ` sergiodj+buildbot
  2016-12-19  0:29 ` sergiodj+buildbot
                   ` (54 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 22:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5f5c6e032e8d5303e9903c0538f84f76bb4d8733

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

Subject:
	MIPS/opcodes: Correct an `interaction' comment typo

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5f/5f5c6e032e8d5303e9903c0538f84f76bb4d8733/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (18 preceding siblings ...)
  2016-12-18 19:24 ` sergiodj+buildbot
@ 2016-12-18 21:07 ` sergiodj+buildbot
  2016-12-18 22:49 ` sergiodj+buildbot
                   ` (55 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 21:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	343fa6906329eb5ec070cf2c05884e49a1cb9d46

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

Subject:
	MIPS16/opcodes: Update opcode table comment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/34/343fa6906329eb5ec070cf2c05884e49a1cb9d46/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (17 preceding siblings ...)
  2016-12-18 18:19 ` sergiodj+buildbot
@ 2016-12-18 19:24 ` sergiodj+buildbot
  2016-12-18 21:07 ` sergiodj+buildbot
                   ` (56 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 19:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	6725647ca2a0adc9206059814725102b53ea6478

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

Subject:
	MIPS/opcodes: Reformat `-M' disassembler option's help text

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/67/6725647ca2a0adc9206059814725102b53ea6478/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (16 preceding siblings ...)
  2016-12-18 15:47 ` sergiodj+buildbot
@ 2016-12-18 18:19 ` sergiodj+buildbot
  2016-12-18 19:24 ` sergiodj+buildbot
                   ` (57 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 18:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	b8760d2cb51517789110c7b2dbd8f61dce08291d

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

Subject:
	MIPS/include: opcode/mips.h: Add a comment for ASE_DSPR3

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b8/b8760d2cb51517789110c7b2dbd8f61dce08291d/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (15 preceding siblings ...)
  2016-12-18 14:32 ` sergiodj+buildbot
@ 2016-12-18 15:47 ` sergiodj+buildbot
  2016-12-18 18:19 ` sergiodj+buildbot
                   ` (58 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 15:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	c2596ca5d7f6ab6d38882bf0f0fc44fe352afcb1

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

Subject:
	Fix internal error in the linker by replacing a call to abort with an error message.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c2/c2596ca5d7f6ab6d38882bf0f0fc44fe352afcb1/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (14 preceding siblings ...)
  2016-12-18 12:36 ` sergiodj+buildbot
@ 2016-12-18 14:32 ` sergiodj+buildbot
  2016-12-18 15:47 ` sergiodj+buildbot
                   ` (59 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 14:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	5590c2bae0fb41e90bc9698e55d8ec1fe22a9173

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

Subject:
	Remove unnecessary inferior lookup in inferior_command

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/55/5590c2bae0fb41e90bc9698e55d8ec1fe22a9173/>

*** Failed to update master GDB git repository.  The build can continue. ***





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

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (13 preceding siblings ...)
  2016-12-18 11:41 ` sergiodj+buildbot
@ 2016-12-18 12:36 ` sergiodj+buildbot
  2016-12-18 14:32 ` sergiodj+buildbot
                   ` (60 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 12:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

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

Commit(s) tested:
	4f3ca05b487e9755018b4c9a053a2e6c35d8a7df

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault in strip when copying a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4f/4f3ca05b487e9755018b4c9a053a2e6c35d8a7df/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (12 preceding siblings ...)
  2016-12-18 10:54 ` sergiodj+buildbot
@ 2016-12-18 11:41 ` sergiodj+buildbot
  2016-12-18 12:36 ` sergiodj+buildbot
                   ` (61 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 11:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4604>

Commit(s) tested:
	92744f058094edd0b29bf9762f4ac26e4c6743c2

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault running strip on a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/92/92744f058094edd0b29bf9762f4ac26e4c6743c2/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (11 preceding siblings ...)
  2016-12-18  6:52 ` sergiodj+buildbot
@ 2016-12-18 10:54 ` sergiodj+buildbot
  2016-12-18 11:41 ` sergiodj+buildbot
                   ` (62 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18 10:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4603>

Commit(s) tested:
	7c2ba67e6ab10879968c938aefd4d0d0b4ce79bc

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Assert on lval_register

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7c/7c2ba67e6ab10879968c938aefd4d0d0b4ce79bc/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (10 preceding siblings ...)
  2016-12-18  6:34 ` sergiodj+buildbot
@ 2016-12-18  6:52 ` sergiodj+buildbot
  2016-12-18 10:54 ` sergiodj+buildbot
                   ` (63 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18  6:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4602>

Commit(s) tested:
	39eeab253474493bc9477dbb2bd9c8041f05764b

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC64 toc optimisation for power9

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/39/39eeab253474493bc9477dbb2bd9c8041f05764b/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (9 preceding siblings ...)
  2016-12-18  4:09 ` sergiodj+buildbot
@ 2016-12-18  6:34 ` sergiodj+buildbot
  2016-12-18  6:52 ` sergiodj+buildbot
                   ` (64 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18  6:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4601>

Commit(s) tested:
	fc72affa6875e81fc9d495a216a8bcb34045ffcd

Author(s) (in the same order as the commits):
	DJ Delorie <dj@redhat.com>

Subject:
	argv.c (expandargv): Check for directories passed as @-files.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/fc/fc72affa6875e81fc9d495a216a8bcb34045ffcd/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (8 preceding siblings ...)
  2016-12-18  2:28 ` sergiodj+buildbot
@ 2016-12-18  4:09 ` sergiodj+buildbot
  2016-12-18  6:34 ` sergiodj+buildbot
                   ` (65 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18  4:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4600>

Commit(s) tested:
	fa6631b4eecfcca00c13b9594e6336dffd40982f

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault in the binutils utilities when reading a corrupt input file.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/fa/fa6631b4eecfcca00c13b9594e6336dffd40982f/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (7 preceding siblings ...)
  2016-12-18  0:49 ` sergiodj+buildbot
@ 2016-12-18  2:28 ` sergiodj+buildbot
  2016-12-18  4:09 ` sergiodj+buildbot
                   ` (66 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18  2:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4599>

Commit(s) tested:
	52c4f3bdd5957a31b671a9791f462be5e8eadd85

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix abort when running tools on a bogus binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/52/52c4f3bdd5957a31b671a9791f462be5e8eadd85/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (6 preceding siblings ...)
  2016-12-17 23:51 ` sergiodj+buildbot
@ 2016-12-18  0:49 ` sergiodj+buildbot
  2016-12-18  2:28 ` sergiodj+buildbot
                   ` (67 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-18  0:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4598>

Commit(s) tested:
	e2996cc315d6ea242e1a954dc20246485ccc8512

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault running strip on a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e2/e2996cc315d6ea242e1a954dc20246485ccc8512/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (5 preceding siblings ...)
  2016-12-17 22:59 ` sergiodj+buildbot
@ 2016-12-17 23:51 ` sergiodj+buildbot
  2016-12-18  0:49 ` sergiodj+buildbot
                   ` (68 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 23:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4597>

Commit(s) tested:
	c28eeff2eabbba2246799470f3713716fa629680

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[ARM] Add ARMv8.3 VCMLA and VCADD instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c2/c28eeff2eabbba2246799470f3713716fa629680/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (4 preceding siblings ...)
  2016-12-17 19:43 ` sergiodj+buildbot
@ 2016-12-17 22:59 ` sergiodj+buildbot
  2016-12-17 23:51 ` sergiodj+buildbot
                   ` (69 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 22:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4596>

Commit(s) tested:
	49e8a725825c77aacc7458b9d7771cb2fa2f64c7

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[ARM] Add ARMv8.3 VJCVT instruction

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/49/49e8a725825c77aacc7458b9d7771cb2fa2f64c7/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (3 preceding siblings ...)
  2016-12-17 18:42 ` sergiodj+buildbot
@ 2016-12-17 19:43 ` sergiodj+buildbot
  2016-12-17 22:59 ` sergiodj+buildbot
                   ` (70 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 19:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4595>

Commit(s) tested:
	a12fd8e1b1c9c6a16e3cc9fc477d7e459776b587

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[ARM] Add ARMv8.3 command line option and feature flag

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a1/a12fd8e1b1c9c6a16e3cc9fc477d7e459776b587/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
                   ` (2 preceding siblings ...)
  2016-12-17 16:20 ` sergiodj+buildbot
@ 2016-12-17 18:42 ` sergiodj+buildbot
  2016-12-17 19:43 ` sergiodj+buildbot
                   ` (71 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 18:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4594>

Commit(s) tested:
	597e138ca0cf96889a1965d06d28552c1d1174d2

Author(s) (in the same order as the commits):
	Alyssa Milburn <amilburn@zall.org>

Subject:
	bfd,ld: Continue after partially-successful relaxed call relocations in sparc.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/59/597e138ca0cf96889a1965d06d28552c1d1174d2/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
  2016-12-17 14:40 ` sergiodj+buildbot
  2016-12-17 15:08 ` sergiodj+buildbot
@ 2016-12-17 16:20 ` sergiodj+buildbot
  2016-12-17 18:42 ` sergiodj+buildbot
                   ` (72 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 16:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4593>

Commit(s) tested:
	a55c9876bb111fd301b4762cf501de0040b8f9db

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault attempting to strip a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a5/a55c9876bb111fd301b4762cf501de0040b8f9db/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
  2016-12-17 14:40 ` sergiodj+buildbot
@ 2016-12-17 15:08 ` sergiodj+buildbot
  2016-12-17 16:20 ` sergiodj+buildbot
                   ` (73 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 15:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4592>

Commit(s) tested:
	daae68f4f372e0618d6b9c64ec0f1f74eae6ab3d

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault in linker parsing a corrupt input file.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/da/daae68f4f372e0618d6b9c64ec0f1f74eae6ab3d/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <@gdb-build>
@ 2016-12-17 14:40 ` sergiodj+buildbot
  2016-12-17 15:08 ` sergiodj+buildbot
                   ` (74 subsequent siblings)
  75 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 14:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4591>

Commit(s) tested:
	39d4daf68e696bbf2db417abe677b2e68f3aace9

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix assertion failure in linker triggered by corrupt input file.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/39/39d4daf68e696bbf2db417abe677b2e68f3aace9/>

*** Failed to update master GDB git repository.  The build can continue. ***





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-04  2:02 [binutils-gdb] Fix bugs with tbnz/tbz instructions sergiodj+buildbot
@ 2016-12-17 14:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17 14:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4589>

Commit(s) tested:
	668650d58d61d9d170f3e5b5c1657ed1c3e2b34b

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Fix bugs with tbnz/tbz instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/66/668650d58d61d9d170f3e5b5c1657ed1c3e2b34b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-03 13:35 [binutils-gdb] PowerPC64 dot-symbol compatibility bugfixes sergiodj+buildbot
@ 2016-12-17  6:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17  6:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4588>

Commit(s) tested:
	8c5b4e5228ec94923fbdfb0008926b0b2a3f51c2

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC64 dot-symbol compatibility bugfixes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8c/8c5b4e5228ec94923fbdfb0008926b0b2a3f51c2/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-03 13:02 [binutils-gdb] Tidy ppc64_elf_hide_symbol sergiodj+buildbot
@ 2016-12-17  3:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-17  3:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4587>

Commit(s) tested:
	b8ac28419be22fe0cc72f6eaaba1ab029610fc71

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Tidy ppc64_elf_hide_symbol

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b8/b8ac28419be22fe0cc72f6eaaba1ab029610fc71/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-03 12:21 [binutils-gdb] PowerPC64 add_symbol_adjust sergiodj+buildbot
@ 2016-12-16 22:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16 22:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4586>

Commit(s) tested:
	35dc6e06960790cd60b890c14e45f82f110b898f

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC64 add_symbol_adjust

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/35/35dc6e06960790cd60b890c14e45f82f110b898f/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-03 11:55 [binutils-gdb] Indirect and warning symbols sergiodj+buildbot
@ 2016-12-16 18:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16 18:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4585>

Commit(s) tested:
	8400d40d954ec3b4a3fe9200645a1b6e90ba46f4

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Indirect and warning symbols

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/84/8400d40d954ec3b4a3fe9200645a1b6e90ba46f4/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-03 11:13 [binutils-gdb] ppc64_elf_copy_indirect_symbol versioned_hidden fix sergiodj+buildbot
@ 2016-12-16 16:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16 16:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4584>

Commit(s) tested:
	474436e67c72d2426e79e600d725812514db0dbe

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	ppc64_elf_copy_indirect_symbol versioned_hidden fix

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/47/474436e67c72d2426e79e600d725812514db0dbe/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 22:35 [binutils-gdb] Introduce enum_flag type for ui_out flags sergiodj+buildbot
@ 2016-12-16 12:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16 12:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4583>

Commit(s) tested:
	bef721e278d9ba3178e679eda38ac86ef2dc0d5d

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Introduce enum_flag type for ui_out flags

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/be/bef721e278d9ba3178e679eda38ac86ef2dc0d5d/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 21:50 [binutils-gdb] Remove unneeded pattern matching in gdb.base/maint.exp sergiodj+buildbot
@ 2016-12-16 11:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16 11:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4582>

Commit(s) tested:
	107c2d628b924de1854d6d254d60e97e1887ce4a

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Remove unneeded pattern matching in gdb.base/maint.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/10/107c2d628b924de1854d6d254d60e97e1887ce4a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 21:13 [binutils-gdb] Support an "unlimited" number of user-defined arguments sergiodj+buildbot
@ 2016-12-16  7:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16  7:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4581>

Commit(s) tested:
	df3ee9ca894f7e831713c332aa7820a6463c2435

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Support an "unlimited" number of user-defined arguments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/df/df3ee9ca894f7e831713c332aa7820a6463c2435/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 20:34 [binutils-gdb] Test user-defined gdb commands and arguments stack sergiodj+buildbot
@ 2016-12-16  3:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16  3:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4580>

Commit(s) tested:
	ec835369f121c11d6e9484ed8c6c11097ad545c5

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Test user-defined gdb commands and arguments stack

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ec/ec835369f121c11d6e9484ed8c6c11097ad545c5/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 19:55 [binutils-gdb] Fix PR 20559 - "eval" command and $arg0...$arg9/$argc substitution sergiodj+buildbot
@ 2016-12-16  2:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-16  2:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4579>

Commit(s) tested:
	01770bbde902e075e524b518ac6c1087a4cc1cfb

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR 20559 - "eval" command and $arg0...$arg9/$argc substitution

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/01/01770bbde902e075e524b518ac6c1087a4cc1cfb/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 18:56 [binutils-gdb] Fix seg-fault in linker when passed a corrupt binary input file sergiodj+buildbot
@ 2016-12-15 23:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15 23:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4578>

Commit(s) tested:
	d7f399a8de4c55eb841db6493597a587fac002de

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault in linker when passed a corrupt binary input file.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d7/d7f399a8de4c55eb841db6493597a587fac002de/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 18:11 [binutils-gdb] Revert change to gdb.cp/ovldbreak.exp sergiodj+buildbot
@ 2016-12-15 20:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15 20:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4577>

Commit(s) tested:
	008459ea88ad4fdcb7da37dad7f68888ef6ecc47

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Revert change to gdb.cp/ovldbreak.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/00/008459ea88ad4fdcb7da37dad7f68888ef6ecc47/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 17:12 [binutils-gdb] Fix seg-fault in the linker when examining a corrupt binary sergiodj+buildbot
@ 2016-12-15 17:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15 17:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4576>

Commit(s) tested:
	531336e3a0b79ed60cfc36ad2d6579b6a71175da

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault in the linker when examining a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/53/531336e3a0b79ed60cfc36ad2d6579b6a71175da/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 16:48 [binutils-gdb] PR symtab/16264 - support DW_AT_main_subprogram sergiodj+buildbot
@ 2016-12-15 13:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15 13:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4575>

Commit(s) tested:
	0c1b455e294c6debb4efedc7f1346f3c43249f15

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	PR symtab/16264 - support DW_AT_main_subprogram

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0c/0c1b455e294c6debb4efedc7f1346f3c43249f15/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 16:03 [binutils-gdb] Rename some trace functions sergiodj+buildbot
@ 2016-12-15 12:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15 12:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4574>

Commit(s) tested:
	e5a873b7071d74320d4e0cbbc2f358dcf2322557

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Rename some trace functions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e5/e5a873b7071d74320d4e0cbbc2f358dcf2322557/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 15:26 [binutils-gdb] Remove mi_out_data::suppress_output sergiodj+buildbot
@ 2016-12-15  8:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15  8:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4573>

Commit(s) tested:
	233c8c27eb81b0a3ab5182dcb59c7306ba9bd3f3

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Remove mi_out_data::suppress_output

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/23/233c8c27eb81b0a3ab5182dcb59c7306ba9bd3f3/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 12:02 [binutils-gdb] Always pass a valid section header offset to elf_parse_notes sergiodj+buildbot
@ 2016-12-15  4:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15  4:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4572>

Commit(s) tested:
	08698b7b46c9c932530dcbcd7e851d27a7d2c503

Author(s) (in the same order as the commits):
	Gary Benson <gbenson@redhat.com>

Subject:
	Always pass a valid section header offset to elf_parse_notes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/08/08698b7b46c9c932530dcbcd7e851d27a7d2c503/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 11:30 [binutils-gdb] Add support for Fushia OS sergiodj+buildbot
@ 2016-12-15  1:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-15  1:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4571>

Commit(s) tested:
	d5451cd45325d12b2cc3d10ffe67f09b0e26b967

Author(s) (in the same order as the commits):
	Josh Conner <joshconner@google.com>

Subject:
	Add support for Fushia OS.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d5/d5451cd45325d12b2cc3d10ffe67f09b0e26b967/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 10:50 [binutils-gdb] [AArch64] Recognize STR instruction in prologue sergiodj+buildbot
@ 2016-12-14 22:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14 22:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4569>

Commit(s) tested:
	432ec0814b01a93b88eddf13092ea6abef34652d

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[AArch64] Recognize STR instruction in prologue

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/43/432ec0814b01a93b88eddf13092ea6abef34652d/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02 10:11 [binutils-gdb] Add unit test to aarch64 prologue analyzer sergiodj+buildbot
@ 2016-12-14 21:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14 21:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4567>

Commit(s) tested:
	4d9a9006139d1ceea787cdda871dff8943e493f0

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Add unit test to aarch64 prologue analyzer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4d/4d9a9006139d1ceea787cdda871dff8943e493f0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  6:01 [binutils-gdb] Don't handle timeout inside gdb_test_multiple sergiodj+buildbot
@ 2016-12-14 17:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14 17:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4566>

Commit(s) tested:
	018572b88885ae67d22612937fa1e4fd98d5f5ad

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Don't handle timeout inside gdb_test_multiple

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/01/018572b88885ae67d22612937fa1e4fd98d5f5ad/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  5:34 [binutils-gdb] Class-ify ui_out_table sergiodj+buildbot
@ 2016-12-14 12:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14 12:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4565>

Commit(s) tested:
	36d18bc526b055be896d8dc319cb3ade42238534

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Class-ify ui_out_table

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/36/36d18bc526b055be896d8dc319cb3ade42238534/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  5:00 [binutils-gdb] ui_out_table: Replace boolean flag with enum sergiodj+buildbot
@ 2016-12-14  9:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14  9:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4564>

Commit(s) tested:
	77a179e77b38161e461f5e37512f0b3fc3582181

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	ui_out_table: Replace boolean flag with enum

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/77/77a179e77b38161e461f5e37512f0b3fc3582181/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  4:41 [binutils-gdb] Simplify ui-out level code sergiodj+buildbot
@ 2016-12-14  6:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14  6:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4563>

Commit(s) tested:
	33b2fac610fff1255a24763277a4bf77f1b59ef1

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Simplify ui-out level code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/33/33b2fac610fff1255a24763277a4bf77f1b59ef1/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  3:57 [binutils-gdb] Class-ify ui_out_level sergiodj+buildbot
@ 2016-12-14  4:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14  4:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4562>

Commit(s) tested:
	909c0aa5824080c287b390f82726cf5bfb7011e3

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Class-ify ui_out_level

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/90/909c0aa5824080c287b390f82726cf5bfb7011e3/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  2:49 [binutils-gdb] Class-ify ui_out_hdr sergiodj+buildbot
@ 2016-12-14  1:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-14  1:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4561>

Commit(s) tested:
	37e20dd6599203c4e261fc3a2e86711c90cbbed9

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Class-ify ui_out_hdr

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/37/37e20dd6599203c4e261fc3a2e86711c90cbbed9/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  2:20 [binutils-gdb] Use std::string for ui_out_hdr's text fields sergiodj+buildbot
@ 2016-12-13 22:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13 22:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4560>

Commit(s) tested:
	c5209615263fd0444da28cdfb6661ad287909a70

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Use std::string for ui_out_hdr's text fields

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c5/c5209615263fd0444da28cdfb6661ad287909a70/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  2:11 [binutils-gdb] Replace hand-made linked list of ui_out_hdr by vector and iterator sergiodj+buildbot
@ 2016-12-13 20:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13 20:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4559>

Commit(s) tested:
	78afa7f8599e46eb94a93510b383dfb35e549f7e

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Replace hand-made linked list of ui_out_hdr by vector and iterator

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/78/78afa7f8599e46eb94a93510b383dfb35e549f7e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  1:27 [binutils-gdb] Fixup testcases outputting own name as a test name and standardize failed compilation messages sergiodj+buildbot
@ 2016-12-13 17:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13 17:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4558>

Commit(s) tested:
	84c93cd5f1ff869eb8c04314738eaa2cddb3c29e

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fixup testcases outputting own name as a test name and standardize failed compilation messages

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/84/84c93cd5f1ff869eb8c04314738eaa2cddb3c29e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  0:34 [binutils-gdb] Fix test names starting with uppercase using multi-line gdb_test_multiple sergiodj+buildbot
@ 2016-12-13 13:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13 13:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4557>

Commit(s) tested:
	fb9feb35913d4cf26baf01e1638b18af301f5387

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase using multi-line gdb_test_multiple

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/fb/fb9feb35913d4cf26baf01e1638b18af301f5387/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-02  0:06 [binutils-gdb] Fix test names starting with uppercase using multi-line gdb_test_no_output sergiodj+buildbot
@ 2016-12-13 11:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13 11:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4556>

Commit(s) tested:
	cd2ddb6cde55a20d191e1002dbe1977df695cda9

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase using multi-line gdb_test_no_output

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cd2ddb6cde55a20d191e1002dbe1977df695cda9/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 23:25 [binutils-gdb] Fix test names starting with uppercase using multi-line gdb_test/mi_gdb_test sergiodj+buildbot
@ 2016-12-13  8:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13  8:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4555>

Commit(s) tested:
	bb95117e107fe58ecd35683bf0e8da3b414378ff

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase using multi-line gdb_test/mi_gdb_test

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bb/bb95117e107fe58ecd35683bf0e8da3b414378ff/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 23:01 [binutils-gdb] Fix test names starting with uppercase using gdb_test_multiple sergiodj+buildbot
@ 2016-12-13  5:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13  5:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4554>

Commit(s) tested:
	de97fdd4a05cd7ad0b05444f1721f26c1ad9322f

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase using gdb_test_multiple

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/de/de97fdd4a05cd7ad0b05444f1721f26c1ad9322f/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 22:09 [binutils-gdb] Fix test names starting with uppercase using gdb_test_no_output sergiodj+buildbot
@ 2016-12-13  2:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-13  2:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4553>

Commit(s) tested:
	9f058c10cef5987ee1f1cb28c9a8cf5ef1ec4d11

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase using gdb_test_no_output

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9f/9f058c10cef5987ee1f1cb28c9a8cf5ef1ec4d11/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 21:50 [binutils-gdb] Fix test names starting with uppercase using gdb_test on a single line sergiodj+buildbot
@ 2016-12-12 23:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12 23:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4552>

Commit(s) tested:
	cdc7edd7b17dddd3558bd04d9b2fb5a73dc75f1c

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase using gdb_test on a single line.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cdc7edd7b17dddd3558bd04d9b2fb5a73dc75f1c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 21:12 [binutils-gdb] Fix test names starting with uppercase output by basic functions sergiodj+buildbot
@ 2016-12-12 20:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12 20:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4551>

Commit(s) tested:
	bc6c7af4a2f23c48a38139fc7e0ed2ac7b12bb69

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fix test names starting with uppercase output by basic functions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bc/bc6c7af4a2f23c48a38139fc7e0ed2ac7b12bb69/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 17:48 [binutils-gdb] Fix bug with FP stur instructions sergiodj+buildbot
@ 2016-12-12 18:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12 18:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4550>

Commit(s) tested:
	88ddd4a1ef8818984f87f574b424ccdc7db19660

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Fix bug with FP stur instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/88/88ddd4a1ef8818984f87f574b424ccdc7db19660/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 14:12 [binutils-gdb] Fix accesses to the GOT for AARCH64 operating in 32-bit mode sergiodj+buildbot
@ 2016-12-12 13:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12 13:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4549>

Commit(s) tested:
	5cd1d8bcc24e948e86a636161e6d72f6316545a7

Author(s) (in the same order as the commits):
	Yury Norov <ynorov@caviumnetworks.com>

Subject:
	Fix accesses to the GOT for AARCH64 operating in 32-bit mode.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5c/5cd1d8bcc24e948e86a636161e6d72f6316545a7/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 13:18 [binutils-gdb] Fix handling of MIPS16 HI16 relocs sergiodj+buildbot
@ 2016-12-12 10:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12 10:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4548>

Commit(s) tested:
	40a0bfddf07620f5321927b3231502debb3b73bc

Author(s) (in the same order as the commits):
	Ma Jiang <ma.jiang@zte.com.cn>

Subject:
	Fix handling of MIPS16 HI16 relocs.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/40/40a0bfddf07620f5321927b3231502debb3b73bc/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 12:29 [binutils-gdb] Fix a seg-fault disassembling a corrupt binary sergiodj+buildbot
@ 2016-12-12  7:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12  7:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4547>

Commit(s) tested:
	e82ab856bb4689330c29fb9f1c57a8555b26380e

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix a seg-fault disassembling a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e8/e82ab856bb4689330c29fb9f1c57a8555b26380e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 12:11 [binutils-gdb] Fix abort in x86 disassembler sergiodj+buildbot
@ 2016-12-12  4:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12  4:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4546>

Commit(s) tested:
	a37a2806e3289294ed214aed3c8a45db46026b39

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix abort in x86 disassembler.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a3/a37a2806e3289294ed214aed3c8a45db46026b39/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01 10:32 [binutils-gdb] Fix seg-fault running addr2line on a corrupt binary sergiodj+buildbot
@ 2016-12-12  1:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-12  1:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4545>

Commit(s) tested:
	50455f1ab2935f7321215dfa681745c9b1cb5b19

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix seg-fault running addr2line on a corrupt binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/50/50455f1ab2935f7321215dfa681745c9b1cb5b19/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01  5:58 [binutils-gdb] Use std::string in ui_out_table sergiodj+buildbot
@ 2016-12-11 22:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11 22:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4544>

Commit(s) tested:
	95a23284a3db0ec85bb0b11c70e6b5acf00563f6

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Use std::string in ui_out_table

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/95/95a23284a3db0ec85bb0b11c70e6b5acf00563f6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01  5:08 [binutils-gdb] Use std::vector for cli_ui_out_data::streams sergiodj+buildbot
@ 2016-12-11 20:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11 20:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4543>

Commit(s) tested:
	b9b118c3bb29052ee76c6bf32b99962cda5113ba

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Use std::vector for cli_ui_out_data::streams

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b9/b9b118c3bb29052ee76c6bf32b99962cda5113ba/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01  4:21 [binutils-gdb] Use std::vector for mi_ui_out_data::streams sergiodj+buildbot
@ 2016-12-11 19:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11 19:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4542>

Commit(s) tested:
	4a9d4ea535a6c9b8c2e7cdf91377abe284d0b277

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Use std::vector for mi_ui_out_data::streams

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4a/4a9d4ea535a6c9b8c2e7cdf91377abe284d0b277/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01  3:47 [binutils-gdb] Use std::vector for ui_out::levels sergiodj+buildbot
@ 2016-12-11 15:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11 15:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4541>

Commit(s) tested:
	56df3084847984aeddd8c24ca997242ec8c5a369

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Use std::vector for ui_out::levels

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/56/56df3084847984aeddd8c24ca997242ec8c5a369/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-12-01  3:08 [binutils-gdb] Use new/delete instead of malloc/free-based functions sergiodj+buildbot
@ 2016-12-11 10:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11 10:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4540>

Commit(s) tested:
	5486f16481dffa1c1a0d1fd9e38b97e3678078ed

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Use new/delete instead of malloc/free-based functions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/54/5486f16481dffa1c1a0d1fd9e38b97e3678078ed/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-30 21:56 [binutils-gdb] Makefiles: Disable suffix rules and implicit rules sergiodj+buildbot
@ 2016-12-11  8:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11  8:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4539>

Commit(s) tested:
	ad02e4fe877f3a874145dd045626501245e65624

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Makefiles: Disable suffix rules and implicit rules

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ad/ad02e4fe877f3a874145dd045626501245e65624/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-30 12:39 [binutils-gdb] [ARM] Read memory as unsigned integer sergiodj+buildbot
@ 2016-12-11  5:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11  5:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4538>

Commit(s) tested:
	7913a64cab3930fe524f0e38f85cfca11bd52dcb

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Read memory as unsigned integer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/79/7913a64cab3930fe524f0e38f85cfca11bd52dcb/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-30 12:13 [binutils-gdb] Revert accidental elf.c change sergiodj+buildbot
@ 2016-12-11  3:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-11  3:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4537>

Commit(s) tested:
	e9a38e0f5287ce7b4629f5f923191e38dd7355c0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Revert accidental elf.c change

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e9/e9a38e0f5287ce7b4629f5f923191e38dd7355c0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-30  7:01 [binutils-gdb] PR20886, looping in ppc64_elf_size_stubs sergiodj+buildbot
@ 2016-12-10 20:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10 20:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4534>

Commit(s) tested:
	ea3d7d1cab4221ab729327bb4d957352c79d05f0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR20886, looping in ppc64_elf_size_stubs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ea/ea3d7d1cab4221ab729327bb4d957352c79d05f0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-29 12:01 [binutils-gdb] [ARC] Add checking for LP_COUNT reg usage, improve error reporting sergiodj+buildbot
@ 2016-12-10 17:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10 17:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4533>

Commit(s) tested:
	abe7c33b45288b407e6d001aad713183d4bab5c6

Author(s) (in the same order as the commits):
	Claudiu Zissulescu <claziss@synopsys.com>

Subject:
	[ARC] Add checking for LP_COUNT reg usage, improve error reporting.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ab/abe7c33b45288b407e6d001aad713183d4bab5c6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-29 11:20 [binutils-gdb] [ARC] Fix disassembler option sergiodj+buildbot
@ 2016-12-10 15:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10 15:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4532>

Commit(s) tested:
	ee881e5d3312ea5396bddc37e8673b77bf549b4b

Author(s) (in the same order as the commits):
	Claudiu Zissulescu <claziss@synopsys.com>

Subject:
	[ARC] Fix disassembler option.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ee/ee881e5d3312ea5396bddc37e8673b77bf549b4b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-29  3:18 [binutils-gdb] Fix debug output in record_full_open_1 sergiodj+buildbot
@ 2016-12-10 12:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10 12:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4531>

Commit(s) tested:
	0a0640e3ba9a668c4c317520c48246e1cc8d75ca

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix debug output in record_full_open_1

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0a/0a0640e3ba9a668c4c317520c48246e1cc8d75ca/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-28 20:51 [binutils-gdb] Partially revert patch for PR 20815 - do not sort the PT_LOAD segments. Non-ordered segments are needed by the Linux kernel sergiodj+buildbot
@ 2016-12-10  8:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10  8:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4530>

Commit(s) tested:
	cd58485720b47d80fed0b281d15a9198f43eaf0c

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Partially revert patch for PR 20815 - do not sort the PT_LOAD segments.  Non-ordered segments are needed by the Linux kernel.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cd58485720b47d80fed0b281d15a9198f43eaf0c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-28 21:09 [binutils-gdb] X86: Ignore REX_B bit for 32-bit XOP instructions sergiodj+buildbot
@ 2016-12-10  5:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10  5:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4529>

Commit(s) tested:
	abfcb414b9900ef996b1665323a950610dbdca43

Author(s) (in the same order as the commits):
	Amit Pawar <Amit.Pawar@amd.com>

Subject:
	X86: Ignore REX_B bit for 32-bit XOP instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ab/abfcb414b9900ef996b1665323a950610dbdca43/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-28 19:38 [binutils-gdb] Restrict checking value.lval on using address sergiodj+buildbot
@ 2016-12-10  3:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-10  3:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4528>

Commit(s) tested:
	1a0884415891b197972f8acf59131c3c9376807f

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Restrict checking value.lval on using address

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1a/1a0884415891b197972f8acf59131c3c9376807f/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-28 19:26 [binutils-gdb] Adjust Value.location for lval_register sergiodj+buildbot
@ 2016-12-09 23:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-09 23:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4527>

Commit(s) tested:
	7dc54575d91a2b41f6c3e838eec44a7017a24436

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Adjust Value.location for lval_register

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7d/7dc54575d91a2b41f6c3e838eec44a7017a24436/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-28 17:50 [binutils-gdb] Move computed value's frame id to piece_closure sergiodj+buildbot
@ 2016-12-09 20:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-09 20:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4526>

Commit(s) tested:
	ee40d8d45213caf0cfb63e603f0fd5a58532e751

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Move computed value's frame id to piece_closure

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ee/ee40d8d45213caf0cfb63e603f0fd5a58532e751/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-28 16:35 [binutils-gdb] Properly hide hidden versioned symbol in executable sergiodj+buildbot
@ 2016-12-09 17:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-09 17:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4525>

Commit(s) tested:
	4deb8f714d555a2f530e37c3e7af32bc42fdda58

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Properly hide hidden versioned symbol in executable

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4d/4deb8f714d555a2f530e37c3e7af32bc42fdda58/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-27  8:30 [binutils-gdb] Remove verbosity from ui_out_message and friends sergiodj+buildbot
@ 2016-12-09  6:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-09  6:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4523>

Commit(s) tested:
	7fb048a2ee38bbc85ba0e96e2932cb0cb1f7381e

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Remove verbosity from ui_out_message and friends

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7f/7fb048a2ee38bbc85ba0e96e2932cb0cb1f7381e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-27  8:16 [binutils-gdb] Constify wrap_here/wrap_hint code path sergiodj+buildbot
@ 2016-12-09  4:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-09  4:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4522>

Commit(s) tested:
	d2c0eef48a1bb331ca08f8f26ff82c5d4086ba0c

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Constify wrap_here/wrap_hint code path

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d2/d2c0eef48a1bb331ca08f8f26ff82c5d4086ba0c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-27  5:56 [binutils-gdb] Fix return value of uo_redirect sergiodj+buildbot
@ 2016-12-09  0:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-09  0:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4521>

Commit(s) tested:
	82bbe65a43015a753bec8c64869679a699331a5b

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix return value of uo_redirect

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/82/82bbe65a43015a753bec8c64869679a699331a5b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-27  5:37 [binutils-gdb] Remove ui_out_destroy sergiodj+buildbot
@ 2016-12-08 22:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08 22:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4520>

Commit(s) tested:
	e4975d6a9cd8aaf3fb14135b36850964def131d7

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Remove ui_out_destroy

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e4/e4975d6a9cd8aaf3fb14135b36850964def131d7/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-27  4:37 [binutils-gdb] Rename ui_out_data to mi_ui_out_data sergiodj+buildbot
@ 2016-12-08 19:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08 19:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4519>

Commit(s) tested:
	0abe66b59fda0689c32fe9d96b3690b4d49a3027

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Rename ui_out_data to mi_ui_out_data

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0a/0abe66b59fda0689c32fe9d96b3690b4d49a3027/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-27  4:20 [binutils-gdb] Remove unused functions and declarations sergiodj+buildbot
@ 2016-12-08 15:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08 15:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4518>

Commit(s) tested:
	7f904c28f5cd2dc91a118ae6169d6993aaf71f63

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Remove unused functions and declarations

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7f/7f904c28f5cd2dc91a118ae6169d6993aaf71f63/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-26 15:59 [binutils-gdb] Remove stale comments sergiodj+buildbot
@ 2016-12-08 12:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08 12:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4517>

Commit(s) tested:
	59b21252a88aa6ba488cfb19686d9cbad2577e76

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Remove stale comments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/59/59b21252a88aa6ba488cfb19686d9cbad2577e76/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-25 21:27 [binutils-gdb] Remove check requiring void argument to functions with no parameters sergiodj+buildbot
@ 2016-12-08 10:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08 10:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4516>

Commit(s) tested:
	8227ffad95fcd835dd5fcb3e4915159e4552b397

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Remove check requiring void argument to functions with no parameters.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/82/8227ffad95fcd835dd5fcb3e4915159e4552b397/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-25 17:47 [binutils-gdb] Fix typo in Makefile sergiodj+buildbot
@ 2016-12-08  7:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08  7:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4515>

Commit(s) tested:
	50cc587fe49621a87283f06655fe922d45095076

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix typo in Makefile

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/50/50cc587fe49621a87283f06655fe922d45095076/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-25 15:36 [binutils-gdb] Fix typos in comment sergiodj+buildbot
@ 2016-12-08  4:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08  4:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4514>

Commit(s) tested:
	8ce9efb079b6e7b3ab2e795db9477656375d7204

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix typos in comment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8c/8ce9efb079b6e7b3ab2e795db9477656375d7204/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-25 16:29 [binutils-gdb] Fix typo in comment sergiodj+buildbot
@ 2016-12-08  2:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-08  2:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4513>

Commit(s) tested:
	17e5269b995b0560dc74af78ba134cf1fcd9d56a

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix typo in comment

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/17/17e5269b995b0560dc74af78ba134cf1fcd9d56a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-25 10:36 [binutils-gdb] Prevent problems with section alignment by not shrinking the .rsrc section sergiodj+buildbot
@ 2016-12-07 22:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07 22:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4512>

Commit(s) tested:
	ec8f76882145c71bef81a9cadf0bf51ff9fa5b35

Author(s) (in the same order as the commits):
	Jon Turney <jon.turney@dronecode.org.uk>

Subject:
	Prevent problems with section alignment by not shrinking the .rsrc section.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ec/ec8f76882145c71bef81a9cadf0bf51ff9fa5b35/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 21:27 [binutils-gdb] Do not use std::move when assigning an anonymous object to a unique_ptr sergiodj+buildbot
@ 2016-12-07 19:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07 19:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4511>

Commit(s) tested:
	036e657b48144d7449ddfcfcf9214bcd7bcf268b

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Do not use std::move when assigning an anonymous object to a unique_ptr.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/03/036e657b48144d7449ddfcfcf9214bcd7bcf268b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 21:00 [binutils-gdb] Add noexcept to custom non-throwing new operators sergiodj+buildbot
@ 2016-12-07 15:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07 15:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4510>

Commit(s) tested:
	bbe910e6e1140cb484a74911f3cea854cf9e7e2a

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Add noexcept to custom non-throwing new operators.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bb/bbe910e6e1140cb484a74911f3cea854cf9e7e2a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 19:17 [binutils-gdb] Optimize byte-aligned copies in copy_bitwise() sergiodj+buildbot
@ 2016-12-07 12:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07 12:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4509>

Commit(s) tested:
	793c128d03113816db85e8d1fa0bcd4982e246ee

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	Optimize byte-aligned copies in copy_bitwise()

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/79/793c128d03113816db85e8d1fa0bcd4982e246ee/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 19:13 [binutils-gdb] Add unit test for copy_bitwise sergiodj+buildbot
@ 2016-12-07 10:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07 10:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4508>

Commit(s) tested:
	ad06383f106ccfa299a6c7ac9720178d2d3d583f

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	Add unit test for copy_bitwise

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ad/ad06383f106ccfa299a6c7ac9720178d2d3d583f/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 18:47 [binutils-gdb] Fix copy_bitwise() sergiodj+buildbot
@ 2016-12-07  9:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07  9:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4507>

Commit(s) tested:
	22347e554cd7ba2a0bf36dc81ebfcbe2e2fd74af

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	Fix copy_bitwise()

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/22/22347e554cd7ba2a0bf36dc81ebfcbe2e2fd74af/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 17:53 [binutils-gdb] Fix PR12616 - gdb does not implement DW_AT_data_bit_offset sergiodj+buildbot
@ 2016-12-07  5:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07  5:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4506>

Commit(s) tested:
	da5b30da2d1167591aa8d71b543f97bfdc2ec2a2

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	Fix PR12616 - gdb does not implement DW_AT_data_bit_offset

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/da/da5b30da2d1167591aa8d71b543f97bfdc2ec2a2/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24 14:48 [binutils-gdb] [ARM] Bind defined symbol locally in PIE sergiodj+buildbot
@ 2016-12-07  3:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-07  3:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4505>

Commit(s) tested:
	1dcb9720d62cd053a72c31881b7724ce9f74332c

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[ARM] Bind defined symbol locally in PIE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1d/1dcb9720d62cd053a72c31881b7724ce9f74332c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-24  3:59 [binutils-gdb] RISC-V/bfd: Fix bitsize of R_RISCV_ADD8 sergiodj+buildbot
@ 2016-12-06 21:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06 21:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4504>

Commit(s) tested:
	0b14696aedc2b56291bc98d62fe232c8dceb1385

Author(s) (in the same order as the commits):
	Kuan-Lin Chen <kuanlinchentw@gmail.com>

Subject:
	RISC-V/bfd: Fix bitsize of R_RISCV_ADD8.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0b/0b14696aedc2b56291bc98d62fe232c8dceb1385/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23 17:24 [binutils-gdb] gdb: Use C++11 std::chrono sergiodj+buildbot
@ 2016-12-06 18:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06 18:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4503>

Commit(s) tested:
	dcb07cfa156a8e9f768c7f2b5d32f27b6dfe939f

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: Use C++11 std::chrono

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/dc/dcb07cfa156a8e9f768c7f2b5d32f27b6dfe939f/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23 17:10 [binutils-gdb] Minor formatting fixups in Makefiles sergiodj+buildbot
@ 2016-12-06 15:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06 15:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4502>

Commit(s) tested:
	8629c02c0db6ff3f7444397567a57dd36a3eed41

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Minor formatting fixups in Makefiles

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/86/8629c02c0db6ff3f7444397567a57dd36a3eed41/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23 16:36 [binutils-gdb] Normalize names of some source files sergiodj+buildbot
@ 2016-12-06 14:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06 14:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4501>

Commit(s) tested:
	03b62bbbce3dc5f15131d9e78f77d035cd1cffb3

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Normalize names of some source files

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/03/03b62bbbce3dc5f15131d9e78f77d035cd1cffb3/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23 15:19 [binutils-gdb] Makefiles: Flatten and sort file lists sergiodj+buildbot
@ 2016-12-06 10:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06 10:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4500>

Commit(s) tested:
	b593ecca856860a8b38deb808493bba4beef3aee

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Makefiles: Flatten and sort file lists

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b5/b593ecca856860a8b38deb808493bba4beef3aee/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23 11:55 [binutils-gdb] Fix the linker so that it will not silently generate ELF binaries with invalid program headers. Fix readelf to report such invalid binaries sergiodj+buildbot
@ 2016-12-06  6:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06  6:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4499>

Commit(s) tested:
	1a9ccd70f9a75dc6b48d340059f28ef3550c107b

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix the linker so that it will not silently generate ELF binaries with invalid program headers.  Fix readelf to report such invalid binaries.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1a/1a9ccd70f9a75dc6b48d340059f28ef3550c107b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  9:06 [binutils-gdb] elf_backend_dtrel_excludes_plt sergiodj+buildbot
@ 2016-12-06  5:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06  5:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4498>

Commit(s) tested:
	64f52338e924cce3a205527136e145da660a4686

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	elf_backend_dtrel_excludes_plt

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/64/64f52338e924cce3a205527136e145da660a4686/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  8:40 [binutils-gdb] Delete duplicate target short-cuts to dynamic sections sergiodj+buildbot
@ 2016-12-06  1:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-06  1:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4497>

Commit(s) tested:
	ce558b89b15a18fd67fdc02a4d410a6d92d2ba63

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Delete duplicate target short-cuts to dynamic sections

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ce/ce558b89b15a18fd67fdc02a4d410a6d92d2ba63/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  7:46 [binutils-gdb] Regen POTFILES.in sergiodj+buildbot
@ 2016-12-05 22:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05 22:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4496>

Commit(s) tested:
	3ae0486cdce5d2ed4c922c598a3258fcbd9c8f29

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Regen POTFILES.in

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3a/3ae0486cdce5d2ed4c922c598a3258fcbd9c8f29/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  2:43 [binutils-gdb] gdbserver: Use warning for warnings sergiodj+buildbot
@ 2016-12-05 18:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05 18:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4495>

Commit(s) tested:
	9986ba08876f86f7d36d230afc11b60a34287da8

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdbserver: Use warning for warnings

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/99/9986ba08876f86f7d36d230afc11b60a34287da8/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  1:51 [binutils-gdb] gdbserver: Use debug_printf for debug output sergiodj+buildbot
@ 2016-12-05 15:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05 15:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4494>

Commit(s) tested:
	4eefa7bcf286b879f61b9e1ec1c97230f5345104

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdbserver: Use debug_printf for debug output

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4e/4eefa7bcf286b879f61b9e1ec1c97230f5345104/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  1:00 [binutils-gdb] Fix spelling mistakes in comments in shell scripts sergiodj+buildbot
@ 2016-12-05 12:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05 12:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4493>

Commit(s) tested:
	ca3cbe5cd7715d1559d55f8e71be1dd7340f13b1

Author(s) (in the same order as the commits):
	Ambrogino Modigliani <ambrogino.modigliani@gmail.com>

Subject:
	Fix spelling mistakes in comments in shell scripts

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ca/ca3cbe5cd7715d1559d55f8e71be1dd7340f13b1/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  3:21 [binutils-gdb] Fix spelling mistakes in comments in configure scripts sergiodj+buildbot
@ 2016-12-05 11:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05 11:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4492>

Commit(s) tested:
	96fe45624e51f1bb747e36cf8bdaab216f31c5ec

Author(s) (in the same order as the commits):
	Ambrogino Modigliani <ambrogino.modigliani@gmail.com>

Subject:
	Fix spelling mistakes in comments in configure scripts

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/96/96fe45624e51f1bb747e36cf8bdaab216f31c5ec/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  0:03 [binutils-gdb] Change gdbarch software_single_step frame_info to regcache sergiodj+buildbot
@ 2016-12-05  6:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05  6:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4491>

Commit(s) tested:
	f5ea389ac78ccd7c426a93f43e6117dad9ce0878

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Change gdbarch software_single_step frame_info to regcache

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f5/f5ea389ac78ccd7c426a93f43e6117dad9ce0878/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 22:40 [binutils-gdb] gdbarch software_single_step frame_info to regcache: spu sergiodj+buildbot
@ 2016-12-05  4:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05  4:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4490>

Commit(s) tested:
	b2260160f8cde8de118914ddeaf797bea42e65ce

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: spu

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b2/b2260160f8cde8de118914ddeaf797bea42e65ce/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-23  0:36 [binutils-gdb] gdbarch software_single_step frame_info to regcache: tic6x sergiodj+buildbot
@ 2016-12-05  2:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05  2:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4489>

Commit(s) tested:
	fb090cfa157e35fac1c10c062fd005e38b894ea4

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: tic6x

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/fb/fb090cfa157e35fac1c10c062fd005e38b894ea4/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 21:00 [binutils-gdb] gdbarch software_single_step frame_info to regcache: rs6000 sergiodj+buildbot
@ 2016-12-05  2:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-05  2:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4488>

Commit(s) tested:
	41e26ad32d17ee35f79f629654811f5e8656cab8

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: rs6000

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/41/41e26ad32d17ee35f79f629654811f5e8656cab8/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 20:47 [binutils-gdb] gdbarch software_single_step frame_info to regcache: s390 sergiodj+buildbot
@ 2016-12-04 22:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04 22:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4487>

Commit(s) tested:
	ad76968956f30bed6d120e0dfd247034e0855fea

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: s390

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ad/ad76968956f30bed6d120e0dfd247034e0855fea/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 20:15 [binutils-gdb] gdbarch software_single_step frame_info to regcache: sparc sergiodj+buildbot
@ 2016-12-04 17:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04 17:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4486>

Commit(s) tested:
	cd76b525eda02c30c4412698a2ff309b975d417a

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: sparc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cd76b525eda02c30c4412698a2ff309b975d417a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 19:25 [binutils-gdb] gdbarch software_single_step frame_info to regcache: nios2 sergiodj+buildbot
@ 2016-12-04 14:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04 14:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4485>

Commit(s) tested:
	3889f4909e0db5f5ca8ca043ef9825f0ad971fd6

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: nios2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/38/3889f4909e0db5f5ca8ca043ef9825f0ad971fd6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 18:47 [binutils-gdb] gdbarch software_single_step frame_info to regcache: moxie sergiodj+buildbot
@ 2016-12-04 11:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04 11:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4484>

Commit(s) tested:
	a8f341826d63a5c216c41e10bf1e4e6c3db3ce65

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: moxie

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a8/a8f341826d63a5c216c41e10bf1e4e6c3db3ce65/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 17:49 [binutils-gdb] gdbarch software_single_step frame_info to regcache: mips sergiodj+buildbot
@ 2016-12-04  8:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04  8:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4483>

Commit(s) tested:
	7113a196bac7f1134bcdd79ad3e6badcb5d77f95

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: mips

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/71/7113a196bac7f1134bcdd79ad3e6badcb5d77f95/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 17:26 [binutils-gdb] gdbarch software_single_step frame_info to regcache: cris sergiodj+buildbot
@ 2016-12-04  6:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04  6:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4482>

Commit(s) tested:
	5b6e2eee087cf206d5c2bf1f9523217aaf5938aa

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: cris

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5b/5b6e2eee087cf206d5c2bf1f9523217aaf5938aa/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 16:56 [binutils-gdb] gdbarch software_single_step frame_info to regcache: alpha sergiodj+buildbot
@ 2016-12-04  1:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04  1:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4481>

Commit(s) tested:
	7ab2d0874025af6ee858b32c576f2461c0a1df3d

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: alpha

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7a/7ab2d0874025af6ee858b32c576f2461c0a1df3d/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 15:55 [binutils-gdb] gdbarch software_single_step frame_info to regcache: aarch64 sergiodj+buildbot
@ 2016-12-04  0:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-04  0:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4480>

Commit(s) tested:
	0187a92f57b516f7171e70bec46701cfdaa6c6bd

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step frame_info to regcache: aarch64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/01/0187a92f57b516f7171e70bec46701cfdaa6c6bd/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 15:10 [binutils-gdb] New regcache_raw_get_signed sergiodj+buildbot
@ 2016-12-03 21:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03 21:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4479>

Commit(s) tested:
	9fd15b2e80452f03edb3fb36c2b4c36d05f4ef4e

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	New regcache_raw_get_signed

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9f/9fd15b2e80452f03edb3fb36c2b4c36d05f4ef4e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 13:53 [binutils-gdb] gas, opcodes: fix hardware capabilities bumping in the sparc assembler sergiodj+buildbot
@ 2016-12-03 17:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03 17:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4478>

Commit(s) tested:
	6884417a0ff3555b192d4aceeacc5e7232cad207

Author(s) (in the same order as the commits):
	Jose E. Marchesi <jose.marchesi@oracle.com>

Subject:
	gas,opcodes: fix hardware capabilities bumping in the sparc assembler.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/68/6884417a0ff3555b192d4aceeacc5e7232cad207/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 14:50 [binutils-gdb] [ARC] Fix printing 'b' mnemonics sergiodj+buildbot
@ 2016-12-03 13:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03 13:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4477>

Commit(s) tested:
	c4b943d7aed5edbfc31aa1e9dc9e7bcf108d76a0

Author(s) (in the same order as the commits):
	Claudiu Zissulescu <claziss@synopsys.com>

Subject:
	[ARC] Fix printing 'b' mnemonics.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c4/c4b943d7aed5edbfc31aa1e9dc9e7bcf108d76a0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 11:18 [binutils-gdb] PR20744, Incorrect PowerPC VLE relocs sergiodj+buildbot
@ 2016-12-03 11:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03 11:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4476>

Commit(s) tested:
	08dc996fedde9143cda25720961684087b133640

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PR20744, Incorrect PowerPC VLE relocs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/08/08dc996fedde9143cda25720961684087b133640/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 10:39 [binutils-gdb] Use input_bfd in relocate_section sergiodj+buildbot
@ 2016-12-03  9:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03  9:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4475>

Commit(s) tested:
	95f0d0d2338f8eba18d2b3c8cbe15b1d584b885c

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Use input_bfd in relocate_section

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/95/95f0d0d2338f8eba18d2b3c8cbe15b1d584b885c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-22 10:10 [binutils-gdb] Use VALUE_NEXT_FRAME_ID in value_from_component sergiodj+buildbot
@ 2016-12-03  6:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03  6:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4474>

Commit(s) tested:
	c5acd8159633cfde315b01431099e1ce5b23dcf7

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Use VALUE_NEXT_FRAME_ID in value_from_component

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c5/c5acd8159633cfde315b01431099e1ce5b23dcf7/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-21 21:38 [binutils-gdb] Add missing POSTCOMPILE step to mi/ file generation rules sergiodj+buildbot
@ 2016-12-03  4:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03  4:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4473>

Commit(s) tested:
	d0de53e251ce60057d91536a4c71740b047be040

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Add missing POSTCOMPILE step to mi/ file generation rules

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d0/d0de53e251ce60057d91536a4c71740b047be040/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-21 17:38 [binutils-gdb] BFD/DWARF2: Correct an `index' global shadowing error sergiodj+buildbot
@ 2016-12-03  0:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-03  0:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4472>

Commit(s) tested:
	b6ddcd85e3c0ae1f12af60efd6d1b97ac4bfa771

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	BFD/DWARF2: Correct an `index' global shadowing error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b6/b6ddcd85e3c0ae1f12af60efd6d1b97ac4bfa771/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-21 14:37 [binutils-gdb] Create subobject value in pretty printer sergiodj+buildbot
@ 2016-12-02 21:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-02 21:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4471>

Commit(s) tested:
	3fff9862d5229def9318912c2de64a03dab74532

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Create subobject value in pretty printer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3f/3fff9862d5229def9318912c2de64a03dab74532/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-19 19:14 [binutils-gdb] ARI: Add detection of printf_vma and sprintf_vma sergiodj+buildbot
@ 2016-12-02 10:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-02 10:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4469>

Commit(s) tested:
	cc188e5fd6d4f8d3061ed6c58c432a150f7966e9

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	ARI: Add detection of printf_vma and sprintf_vma

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cc/cc188e5fd6d4f8d3061ed6c58c432a150f7966e9/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-19 13:29 [binutils-gdb] Revert "bfd: allow negative offsets to _GLOBAL_OFFSET_TABLE_ in elf64 SPARC" sergiodj+buildbot
@ 2016-12-02  8:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-02  8:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4468>

Commit(s) tested:
	0fc9967d0b28a1e037233d49cec479d3ab1e9e59

Author(s) (in the same order as the commits):
	Jose E. Marchesi <jose.marchesi@oracle.com>

Subject:
	Revert "bfd: allow negative offsets to _GLOBAL_OFFSET_TABLE_ in elf64 SPARC"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/0f/0fc9967d0b28a1e037233d49cec479d3ab1e9e59/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-19  3:34 [binutils-gdb] Makefile: fix typo sergiodj+buildbot
@ 2016-12-02  5:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-02  5:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4467>

Commit(s) tested:
	ef787763b9495913d5be90bcdedcecb553cbf308

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Makefile: fix typo

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ef/ef787763b9495913d5be90bcdedcecb553cbf308/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-19  0:43 [binutils-gdb] bfd: fix negative GOT offsets for non-local references on sparc64 sergiodj+buildbot
@ 2016-12-02  2:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-02  2:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4466>

Commit(s) tested:
	cc133f9f118ef4afd93da0ecba48151488c41c74

Author(s) (in the same order as the commits):
	James Clarke <jrtc27@jrtc27.com>

Subject:
	bfd: fix negative GOT offsets for non-local references on sparc64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cc/cc133f9f118ef4afd93da0ecba48151488c41c74/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 19:31 [binutils-gdb] libiberty: Add Rust symbol demangling sergiodj+buildbot
@ 2016-12-01 23:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01 23:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4465>

Commit(s) tested:
	535aade664ac4170fe82e52c9addd686156220a1

Author(s) (in the same order as the commits):
	David Tolnay <dtolnay@gmail.com>

Subject:
	libiberty: Add Rust symbol demangling.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/53/535aade664ac4170fe82e52c9addd686156220a1/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-19  1:25 [binutils-gdb] libiberty: demangler crash with missing :? or fold expression component sergiodj+buildbot
@ 2016-12-01 21:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01 21:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4464>

Commit(s) tested:
	ddc5804ebd4b2be29ad4e3e259f5c6e907f34f26

Author(s) (in the same order as the commits):
	Mark Wielaard <mark@klomp.org>

Subject:
	libiberty: demangler crash with missing :? or fold expression component.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/dd/ddc5804ebd4b2be29ad4e3e259f5c6e907f34f26/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 18:18 [binutils-gdb] libiberty: Fix some demangler crashes caused by reading past end of input sergiodj+buildbot
@ 2016-12-01 17:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01 17:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4463>

Commit(s) tested:
	1706852c3c6c1d39f949c933d37647d02509b9cb

Author(s) (in the same order as the commits):
	Mark Wielaard <mark@klomp.org>

Subject:
	libiberty: Fix some demangler crashes caused by reading past end of input.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/17/1706852c3c6c1d39f949c933d37647d02509b9cb/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 18:01 [binutils-gdb] libiberty: Add -Wshadow=local to warning flags (if supported) sergiodj+buildbot
@ 2016-12-01 15:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01 15:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4462>

Commit(s) tested:
	59d2699cfd30f9defc454be17415c0a518ece32b

Author(s) (in the same order as the commits):
	Mark Wielaard <mark@klomp.org>

Subject:
	libiberty: Add -Wshadow=local to warning flags (if supported).

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/59/59d2699cfd30f9defc454be17415c0a518ece32b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 16:45 [binutils-gdb] Implement P0012R1, Make exception specifications part of the type system sergiodj+buildbot
@ 2016-12-01 11:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01 11:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4461>

Commit(s) tested:
	a4ddf8dc72f0ac10c3459a91949eb1bdb07ed10d

Author(s) (in the same order as the commits):
	Jason Merrill <jason@redhat.com>

Subject:
	Implement P0012R1, Make exception specifications part of the type system.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a4/a4ddf8dc72f0ac10c3459a91949eb1bdb07ed10d/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 16:14 [binutils-gdb] libiberty: Fix -Wimplicit-fallthrough warnings sergiodj+buildbot
@ 2016-12-01  9:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01  9:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4460>

Commit(s) tested:
	4d17eaece8b31e642acaf4d77fe961ad8e3aaf50

Author(s) (in the same order as the commits):
	Mark Wielaard <mjw@redhat.com>

Subject:
	libiberty: Fix -Wimplicit-fallthrough warnings.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4d/4d17eaece8b31e642acaf4d77fe961ad8e3aaf50/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 16:06 [binutils-gdb] Implement P0136R1, Rewording inheriting constructors sergiodj+buildbot
@ 2016-12-01  5:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01  5:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4459>

Commit(s) tested:
	ef0f5d7cc3b2082c94beffa7c9c1a8acd8eaa427

Author(s) (in the same order as the commits):
	Jason Merrill <jason@redhat.com>

Subject:
	Implement P0136R1, Rewording inheriting constructors.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ef/ef0f5d7cc3b2082c94beffa7c9c1a8acd8eaa427/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 16:19 [binutils-gdb] libiberty: Fix memory leak in ada_demangle when symbol cannot be demangled sergiodj+buildbot
@ 2016-12-01  3:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01  3:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4458>

Commit(s) tested:
	aba19b625f34fb3d61263fe8044cf0c6d8804570

Author(s) (in the same order as the commits):
	Mark Wielaard <mjw@redhat.com>

Subject:
	libiberty: Fix memory leak in ada_demangle when symbol cannot be demangled.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ab/aba19b625f34fb3d61263fe8044cf0c6d8804570/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 14:01 [binutils-gdb] PR c++/71696 testcase sergiodj+buildbot
@ 2016-12-01  0:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-12-01  0:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4457>

Commit(s) tested:
	9d2cdc86574bda0f1013be8cdc166d86b6d032bc

Author(s) (in the same order as the commits):
	Marcel Böhme <boehme.marcel@gmail.com>

Subject:
	PR c++/71696 testcase.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9d/9d2cdc86574bda0f1013be8cdc166d86b6d032bc/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 13:05 [binutils-gdb] [AArch64] Add ARMv8.3 FCMLA and FCADD instructions sergiodj+buildbot
@ 2016-11-30 21:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30 21:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4456>

Commit(s) tested:
	c2c4ff8d52a2cd3263a547b0384692498714aa1b

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 FCMLA and FCADD instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c2/c2c4ff8d52a2cd3263a547b0384692498714aa1b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 12:49 [binutils-gdb] [AArch64] Add ARMv8.3 weaker release consistency load instructions sergiodj+buildbot
@ 2016-11-30 19:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30 19:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4455>

Commit(s) tested:
	28617675c264213180a599bb4327bf162029636a

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 weaker release consistency load instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/28/28617675c264213180a599bb4327bf162029636a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 11:34 [binutils-gdb] [AArch64] Add ARMv8.3 javascript floating-point conversion instruction sergiodj+buildbot
@ 2016-11-30 16:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30 16:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4454>

Commit(s) tested:
	ccfc90a39b78b7bc4173cd9ead49d2aa59695378

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 javascript floating-point conversion instruction

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cc/ccfc90a39b78b7bc4173cd9ead49d2aa59695378/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18 11:23 [binutils-gdb] [AArch64] Add ARMv8.3 combined pointer authentication load instructions sergiodj+buildbot
@ 2016-11-30 12:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30 12:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4453>

Commit(s) tested:
	3f06e55061d0d8f72dfd11f6c432c23f45d9b597

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 combined pointer authentication load instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3f/3f06e55061d0d8f72dfd11f6c432c23f45d9b597/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-18  9:59 [binutils-gdb] Help diagnose problems with the metag target when mixing static and shared binaries sergiodj+buildbot
@ 2016-11-30 10:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30 10:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4452>

Commit(s) tested:
	6ec49e7c0aeb6d98e379319b565aee2c89388615

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Help diagnose problems with the metag target when mixing static and shared binaries.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6e/6ec49e7c0aeb6d98e379319b565aee2c89388615/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 20:10 [binutils-gdb] Makefile: Replace explicit subdir rules with pattern rules sergiodj+buildbot
@ 2016-11-30  6:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30  6:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4451>

Commit(s) tested:
	470dd0a647c95a2e88c5b0f8df538826b08959a8

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Makefile: Replace explicit subdir rules with pattern rules

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/47/470dd0a647c95a2e88c5b0f8df538826b08959a8/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 19:35 [binutils-gdb] Makefile: Replace old suffix rules with pattern rules sergiodj+buildbot
@ 2016-11-30  4:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30  4:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4450>

Commit(s) tested:
	5443506ee45cb94769db7e76dd2021a96f2f0680

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Makefile: Replace old suffix rules with pattern rules

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/54/5443506ee45cb94769db7e76dd2021a96f2f0680/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 18:49 [binutils-gdb] Remove code that checks for GNU/non-GNU make sergiodj+buildbot
@ 2016-11-30  3:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-30  3:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4449>

Commit(s) tested:
	3b165252e882c05c8217f888194877224295592d

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Remove code that checks for GNU/non-GNU make

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3b/3b165252e882c05c8217f888194877224295592d/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 18:31 [binutils-gdb] Document new hard requirement on GNU make sergiodj+buildbot
@ 2016-11-29 23:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29 23:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4448>

Commit(s) tested:
	f2ff9acd32b4667ee16a03ca8d10fd8b99e22f46

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Document new hard requirement on GNU make

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/f2/f2ff9acd32b4667ee16a03ca8d10fd8b99e22f46/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 16:49 [binutils-gdb] gdb/c-exp.y: fprintf -> parser_fprintf sergiodj+buildbot
@ 2016-11-29 19:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29 19:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4447>

Commit(s) tested:
	66be918f5f9f78d74c70aa332756286ff9d0ccf2

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb/c-exp.y: fprintf -> parser_fprintf

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/66/66be918f5f9f78d74c70aa332756286ff9d0ccf2/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 15:56 [binutils-gdb] gdb/ctf.c: Get rid of mkdir redefinition sergiodj+buildbot
@ 2016-11-29 17:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29 17:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4446>

Commit(s) tested:
	7c2683c40f745397e80b6df4edf8265ecb6fd194

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb/ctf.c: Get rid of mkdir redefinition

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7c/7c2683c40f745397e80b6df4edf8265ecb6fd194/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17 14:41 [binutils-gdb] gdb/ada-lang.c: one malloc -> unique_ptr<[]> sergiodj+buildbot
@ 2016-11-29 12:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29 12:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4445>

Commit(s) tested:
	200069c74f42ffcc726b9995a46971a86286a256

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb/ada-lang.c: one malloc -> unique_ptr<[]>

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/20/200069c74f42ffcc726b9995a46971a86286a256/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17  1:28 [binutils-gdb] gdb/tracepoint.c: Don't use printf_vma sergiodj+buildbot
@ 2016-11-29 11:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29 11:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4444>

Commit(s) tested:
	19f1935d91bfabbe4176ffdaca95bc789b593153

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb/tracepoint.c: Don't use printf_vma

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/19/19f1935d91bfabbe4176ffdaca95bc789b593153/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-17  0:20 [binutils-gdb] Stash frame id of current frame before stashing frame id for previous frame sergiodj+buildbot
@ 2016-11-29  6:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29  6:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4442>

Commit(s) tested:
	256ae5dbc73d1348850f86ee77a0dc3b04bc7cc0

Author(s) (in the same order as the commits):
	Kevin Buettner <kevinb@redhat.com>

Subject:
	Stash frame id of current frame before stashing frame id for previous frame

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/25/256ae5dbc73d1348850f86ee77a0dc3b04bc7cc0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-16 22:59 [binutils-gdb] Make gdb.PendingFrame.read_register handle "user" registers sergiodj+buildbot
@ 2016-11-29  3:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-29  3:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4440>

Commit(s) tested:
	33cc7d368f420326606695daafd6292e2779c6af

Author(s) (in the same order as the commits):
	Kevin Buettner <kevinb@redhat.com>

Subject:
	Make gdb.PendingFrame.read_register handle "user" registers.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/33/33cc7d368f420326606695daafd6292e2779c6af/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-16 22:04 [binutils-gdb] Change meaning of VALUE_FRAME_ID; rename to VALUE_NEXT_FRAME_ID sergiodj+buildbot
@ 2016-11-28 23:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-28 23:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4439>

Commit(s) tested:
	41b56feb5063aee4fefb4a991eb796d1e8a7475e

Author(s) (in the same order as the commits):
	Kevin Buettner <kevinb@redhat.com>

Subject:
	Change meaning of VALUE_FRAME_ID; rename to VALUE_NEXT_FRAME_ID

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/41/41b56feb5063aee4fefb4a991eb796d1e8a7475e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-16 21:50 [binutils-gdb] Distinguish sentinel frame from null frame sergiodj+buildbot
@ 2016-11-28 19:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-28 19:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4438>

Commit(s) tested:
	df433d316277ff5293832d3cd6cbc30b5c38dec0

Author(s) (in the same order as the commits):
	Kevin Buettner <kevinb@redhat.com>

Subject:
	Distinguish sentinel frame from null frame.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/df/df433d316277ff5293832d3cd6cbc30b5c38dec0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-16 20:03 [binutils-gdb] Extend test gdb.python/py-recurse-unwind.exp sergiodj+buildbot
@ 2016-11-28 16:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-28 16:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4437>

Commit(s) tested:
	1a2f3d7ff1d79b1290704e48c71e905b987393a6

Author(s) (in the same order as the commits):
	Kevin Buettner <kevinb@redhat.com>

Subject:
	Extend test gdb.python/py-recurse-unwind.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1a/1a2f3d7ff1d79b1290704e48c71e905b987393a6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-16 20:01 [binutils-gdb] Fix PR20789 - relaxation with negative valued diff relocs sergiodj+buildbot
@ 2016-11-27  2:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-27  2:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4436>

Commit(s) tested:
	4cb771f214ed6a2102e37bce255c6be5d0642f3a

Author(s) (in the same order as the commits):
	Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>

Subject:
	Fix PR20789 - relaxation with negative valued diff relocs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4c/4cb771f214ed6a2102e37bce255c6be5d0642f3a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-16  0:24 [binutils-gdb] gdb: update gnulib to pull in C++ namespace support fixes sergiodj+buildbot
@ 2016-11-26 22:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26 22:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4435>

Commit(s) tested:
	4c62b19fd2e6b81ce7cbb7d01e84c09352ccf224

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: update gnulib to pull in C++ namespace support fixes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4c/4c62b19fd2e6b81ce7cbb7d01e84c09352ccf224/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-15 22:01 [binutils-gdb] Delete gdb::unique_ptr/gdb::move sergiodj+buildbot
@ 2016-11-26 19:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26 19:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4434>

Commit(s) tested:
	5cc8c7310338224d65aa14c4256d4d7539e0dd45

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Delete gdb::unique_ptr/gdb::move

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5c/5cc8c7310338224d65aa14c4256d4d7539e0dd45/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-15 20:54 [binutils-gdb] gdb::{unique_ptr,move} -> std::{unique_ptr,move} sergiodj+buildbot
@ 2016-11-26 15:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26 15:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4433>

Commit(s) tested:
	b22e99fdaf2efe58161c382bbd55f4572ba49eef

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb::{unique_ptr,move} -> std::{unique_ptr,move}

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b2/b22e99fdaf2efe58161c382bbd55f4572ba49eef/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-15 20:24 [binutils-gdb] bitfield-parent-optimized-out: Fix struct definition sergiodj+buildbot
@ 2016-11-26 15:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26 15:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4432>

Commit(s) tested:
	b7f38fdae7c75e1d13abd455b3931950db28d22b

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	bitfield-parent-optimized-out: Fix struct definition

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b7/b7f38fdae7c75e1d13abd455b3931950db28d22b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-14 19:27 [binutils-gdb] Also check GOT PLT for R_X86_64_PLTOFF64 sergiodj+buildbot
@ 2016-11-26 10:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26 10:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4431>

Commit(s) tested:
	9d734efa1034d266249751978f95a686ec9d19c6

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Also check GOT PLT for R_X86_64_PLTOFF64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/9d/9d734efa1034d266249751978f95a686ec9d19c6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-14 10:28 [binutils-gdb] btrace: read entire aux buffer sergiodj+buildbot
@ 2016-11-26  5:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26  5:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4430>

Commit(s) tested:
	db58b3735f45345c06cb9a14d0f83f5b26c1ebf3

Author(s) (in the same order as the commits):
	Markus Metzger <markus.t.metzger@intel.com>

Subject:
	btrace: read entire aux buffer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/db/db58b3735f45345c06cb9a14d0f83f5b26c1ebf3/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-14  9:18 [binutils-gdb] Fix typo "Faal through" should be "Fall through" sergiodj+buildbot
@ 2016-11-26  3:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-26  3:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4429>

Commit(s) tested:
	63f2433dbccc7ddf8812fefd6eed0e6dd2f88955

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix typo "Faal through" should be "Fall through".

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/63/63f2433dbccc7ddf8812fefd6eed0e6dd2f88955/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-12 20:45 [binutils-gdb] Remove some cleanups from the rust code sergiodj+buildbot
@ 2016-11-25 10:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-25 10:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4427>

Commit(s) tested:
	8001f1183f32d674fa3e9af1cca16856afdffc3e

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Remove some cleanups from the rust code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/80/8001f1183f32d674fa3e9af1cca16856afdffc3e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-12 19:05 [binutils-gdb] Use std::string in rust_get_disr_info sergiodj+buildbot
@ 2016-11-25  7:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-25  7:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4426>

Commit(s) tested:
	d93f4d96bb0fb307db9e2dade38ddb3c6bc469ca

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Use std::string in rust_get_disr_info

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d9/d93f4d96bb0fb307db9e2dade38ddb3c6bc469ca/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 21:18 [binutils-gdb] Don't handle unavailable/optimized-out in spu_software_single_step sergiodj+buildbot
@ 2016-11-25  4:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-25  4:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4425>

Commit(s) tested:
	7d15592e06e4abccc97cb8c5670f564327f747e9

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Don't handle unavailable/optimized-out in spu_software_single_step

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7d/7d15592e06e4abccc97cb8c5670f564327f747e9/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 20:35 [binutils-gdb] Identify verilog dump tests as such sergiodj+buildbot
@ 2016-11-25  0:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-25  0:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4424>

Commit(s) tested:
	1f8db343049c3e06483a278e14b7e140ec55c8b3

Author(s) (in the same order as the commits):
	Catherine Moore <clm@codesourcery.com>

Subject:
	Identify verilog dump tests as such.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1f/1f8db343049c3e06483a278e14b7e140ec55c8b3/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 19:33 [binutils-gdb] [AArch64] Add ARMv8.3 combined pointer authentication branch instructions sergiodj+buildbot
@ 2016-11-24 20:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24 20:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4423>

Commit(s) tested:
	74f5402d08b857d60499b27851c204954ce6c42c

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 combined pointer authentication branch instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/74/74f5402d08b857d60499b27851c204954ce6c42c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 18:47 [binutils-gdb] [AArch64] Add ARMv8.3 PACGA instruction sergiodj+buildbot
@ 2016-11-24 17:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24 17:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4422>

Commit(s) tested:
	c84364ece4faa7b3eb0f60f4dc301282e9693e1e

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 PACGA instruction

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c8/c84364ece4faa7b3eb0f60f4dc301282e9693e1e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 17:32 [binutils-gdb] [AArch64] Add ARMv8.3 single source PAC instructions sergiodj+buildbot
@ 2016-11-24 14:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24 14:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4421>

Commit(s) tested:
	a2cfc830e715142a0dd28496feaedf569b116b0e

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 single source PAC instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a2/a2cfc830e715142a0dd28496feaedf569b116b0e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 16:38 [binutils-gdb] [AArch64] Add ARMv8.3 pointer authentication key registers sergiodj+buildbot
@ 2016-11-24 11:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24 11:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4420>

Commit(s) tested:
	b0bfa7b5b884f78b798ab8d34d2a50bc63f558df

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 pointer authentication key registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b0/b0bfa7b5b884f78b798ab8d34d2a50bc63f558df/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 15:42 [binutils-gdb] [AArch64] Add ARMv8.3 instructions which are in the NOP space sergiodj+buildbot
@ 2016-11-24  8:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24  8:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4419>

Commit(s) tested:
	8787d804e1cbbd1946239d6c5e560c87d38bac06

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 instructions which are in the NOP space

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/87/8787d804e1cbbd1946239d6c5e560c87d38bac06/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 14:42 [binutils-gdb] [AArch64] Increase max_num_aliases in aarch64-gen sergiodj+buildbot
@ 2016-11-24  3:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24  3:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4418>

Commit(s) tested:
	3d731f6949e2b0099cfbe0cf608d60a52a66d354

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Increase max_num_aliases in aarch64-gen

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3d/3d731f6949e2b0099cfbe0cf608d60a52a66d354/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 13:30 [binutils-gdb] [AArch64] Add ARMv8.3 command line option and feature flag sergiodj+buildbot
@ 2016-11-24  1:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-24  1:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4417>

Commit(s) tested:
	1924ff7567abf9e1341ae135fb5097bc5f7b76f4

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Add ARMv8.3 command line option and feature flag

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/19/1924ff7567abf9e1341ae135fb5097bc5f7b76f4/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 12:40 [binutils-gdb] Accept hidden COFF symbols, but treat them as if they were debugging symbols sergiodj+buildbot
@ 2016-11-23 21:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-23 21:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4416>

Commit(s) tested:
	7103ad7639b7ed80bec170404185a8e39079446b

Author(s) (in the same order as the commits):
	Luke Allardyce <lukeallardyce@gmail.com>

Subject:
	Accept hidden COFF symbols, but treat them as if they were debugging symbols.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/71/7103ad7639b7ed80bec170404185a8e39079446b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 12:02 [binutils-gdb] Remove apply_val_pretty_printer parameter valaddr sergiodj+buildbot
@ 2016-11-23 17:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-23 17:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4415>

Commit(s) tested:
	668e167446b2777869f413841ec05aed59473d9f

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove apply_val_pretty_printer parameter valaddr

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/66/668e167446b2777869f413841ec05aed59473d9f/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 10:40 [binutils-gdb] Remove parameter valaddr from c print functions sergiodj+buildbot
@ 2016-11-23 15:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-23 15:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4414>

Commit(s) tested:
	65408fa680538f997cdd4b6fb9d74f043a060801

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove parameter valaddr from c print functions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/65/65408fa680538f997cdd4b6fb9d74f043a060801/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11 10:09 [binutils-gdb] sim: mips: fix dv-tx3904cpu build error sergiodj+buildbot
@ 2016-11-23 11:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-23 11:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4413>

Commit(s) tested:
	91588b3af8e026ba11c7368476cc1f3fa8c2e2b1

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: mips: fix dv-tx3904cpu build error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/91/91588b3af8e026ba11c7368476cc1f3fa8c2e2b1/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-11  9:01 [binutils-gdb] sim: mips: fix builds for r3900 cpus due to missing check_u64 sergiodj+buildbot
@ 2016-11-23  7:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-23  7:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4412>

Commit(s) tested:
	e04659e8607bfed6995fd2ced9aaab55e2143302

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: mips: fix builds for r3900 cpus due to missing check_u64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/e0/e04659e8607bfed6995fd2ced9aaab55e2143302/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-10  9:30 [binutils-gdb] [AArch64] Bind defined symbol locally in PIE sergiodj+buildbot
@ 2016-11-22 14:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-22 14:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4408>

Commit(s) tested:
	ac33b731d214d79738ca04d27f7464d4482f6a01

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[AArch64] Bind defined symbol locally in PIE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ac/ac33b731d214d79738ca04d27f7464d4482f6a01/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-10  7:46 [binutils-gdb] Make gdb.mi/user-selected-context-sync.exp use proc_with_prefix sergiodj+buildbot
@ 2016-11-21 16:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-21 16:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4400>

Commit(s) tested:
	8354c62cd144964fce17e11ce035c0c2c0635cbf

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Make gdb.mi/user-selected-context-sync.exp use proc_with_prefix

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/83/8354c62cd144964fce17e11ce035c0c2c0635cbf/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-10  7:45 [binutils-gdb] agent_expr_up: gdb::unique_ptr -> std::unique_ptr sergiodj+buildbot
@ 2016-11-21  8:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-21  8:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4398>

Commit(s) tested:
	6c73cd95f96d37dbf6092a87c8ba0f35277223a5

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	agent_expr_up: gdb::unique_ptr -> std::unique_ptr

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6c/6c73cd95f96d37dbf6092a87c8ba0f35277223a5/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-10  3:59 [binutils-gdb] tui-winsource: Allocate for actual lines only sergiodj+buildbot
@ 2016-11-20 18:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-20 18:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4393>

Commit(s) tested:
	7bc2c8b83ea82b4315c67e7658af815aed062e73

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	tui-winsource: Allocate for actual lines only

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/7b/7bc2c8b83ea82b4315c67e7658af815aed062e73/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-09 23:16 [binutils-gdb] X86: Remove the THREE_BYTE_0F7A entry sergiodj+buildbot
@ 2016-11-20  2:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-20  2:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4389>

Commit(s) tested:
	1f334aeb2268db153f01143e9b0ac01448ecaa56

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	X86: Remove the THREE_BYTE_0F7A entry

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1f/1f334aeb2268db153f01143e9b0ac01448ecaa56/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-09 18:42 [binutils-gdb] Eliminate agent_expr_p; VEC -> std::vector in struct bp_target_info sergiodj+buildbot
@ 2016-11-19  2:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-19  2:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4383>

Commit(s) tested:
	3cde5c42d1c1ddcf8bbde5c47233c644370c959c

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Eliminate agent_expr_p; VEC -> std::vector in struct bp_target_info

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3c/3cde5c42d1c1ddcf8bbde5c47233c644370c959c/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/multi-forks.exp: Run to exit 12
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-09 12:46 [binutils-gdb] Use ui_file_as_string in gdbarch.sh/gdbarch.c sergiodj+buildbot
@ 2016-11-17 20:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-17 20:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4375>

Commit(s) tested:
	6f0302493af0ace93943041c3374069c15c363f7

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Use ui_file_as_string in gdbarch.sh/gdbarch.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/6f/6f0302493af0ace93943041c3374069c15c363f7/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: no double prompt
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-09  9:53 [binutils-gdb] Use ui_file_as_string in gdb/cli/cli-setshow.c sergiodj+buildbot
@ 2016-11-17  8:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-17  8:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4372>

Commit(s) tested:
	3d8b0d9483f6eabc2c1739ac3dd64c30061a6a72

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Use ui_file_as_string in gdb/cli/cli-setshow.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/3d/3d8b0d9483f6eabc2c1739ac3dd64c30061a6a72/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-09  3:33 [binutils-gdb] Use ui_file_as_string in gdb/arm-tdep.c sergiodj+buildbot
@ 2016-11-15 22:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-15 22:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4364>

Commit(s) tested:
	09b0e4b047b44063cf4c8c00527886743619c24e

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Use ui_file_as_string in gdb/arm-tdep.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/09/09b0e4b047b44063cf4c8c00527886743619c24e/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: thread-specific breakpoint was deleted
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08 23:42 [binutils-gdb] Use ui_file_as_string in gdb/xtensa-tdep.c sergiodj+buildbot
@ 2016-11-15  6:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-15  6:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4360>

Commit(s) tested:
	a0f86e735886f3d373507fa9cfc0cf2a2f32eabc

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Use ui_file_as_string in gdb/xtensa-tdep.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a0/a0f86e735886f3d373507fa9cfc0cf2a2f32eabc/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08 18:27 [binutils-gdb] breakpoint.c:commands_command_1 constification and cleanup sergiodj+buildbot
@ 2016-11-14  6:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-14  6:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4353>

Commit(s) tested:
	896b6bda6904765f36692d76a37b99c0412ca9ae

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	breakpoint.c:commands_command_1 constification and cleanup

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/89/896b6bda6904765f36692d76a37b99c0412ca9ae/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08 19:48 [binutils-gdb] cli/cli-script.c: Remove some dead NULL checks sergiodj+buildbot
@ 2016-11-14  2:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-14  2:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4352>

Commit(s) tested:
	4f8ad951f662864884d4b11315c940c5239a4a89

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	cli/cli-script.c: Remove some dead NULL checks

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/4f/4f8ad951f662864884d4b11315c940c5239a4a89/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08 17:10 [binutils-gdb] gdbarch software_single_step returns VEC (CORE_ADDR) * sergiodj+buildbot
@ 2016-11-13 16:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-13 16:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4348>

Commit(s) tested:
	93f9a11fbdb8f09428b17180d51a09a1bda39a52

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	gdbarch software_single_step returns VEC (CORE_ADDR) *

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/93/93f9a11fbdb8f09428b17180d51a09a1bda39a52/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: no double prompt
PASS -> FAIL: gdb.base/double-prompt-target-event-error.exp: ctrlc target event: continue: set height unlimited
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: thread-specific breakpoint was deleted
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08 14:37 [binutils-gdb] Remove arm_insert_single_step_breakpoint sergiodj+buildbot
@ 2016-11-13  7:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-13  7:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4346>

Commit(s) tested:
	771da62d67a9f27c1e706610efe51b13c3f9fd60

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove arm_insert_single_step_breakpoint

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/77/771da62d67a9f27c1e706610efe51b13c3f9fd60/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08  2:27 [binutils-gdb] X86: Properly handle bad FPU opcode sergiodj+buildbot
@ 2016-11-12 10:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-12 10:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4339>

Commit(s) tested:
	48c97fa1ba7d6628352fc2433abd91a41f6c8171

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	X86: Properly handle bad FPU opcode

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/48/48c97fa1ba7d6628352fc2433abd91a41f6c8171/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-08  0:39 [binutils-gdb] i386-tdep.c (i386_gdbarch_init): Add comments sergiodj+buildbot
@ 2016-11-12  0:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-12  0:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4337>

Commit(s) tested:
	ad9eb1fdda263cd91ee8fb36292fb29d546b0076

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	i386-tdep.c (i386_gdbarch_init): Add comments.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ad/ad9eb1fdda263cd91ee8fb36292fb29d546b0076/>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: GDB accepts further input
PASS -> FAIL: gdb.base/paginate-execution-startup.exp: cancel with ctrl-c: set height unlimited
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-05  4:41 [binutils-gdb] Fix a few typos sergiodj+buildbot
@ 2016-11-11  6:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-11  6:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4329>

Commit(s) tested:
	26c4b26f0cc51f04cdaba3c9e6ff09032bd10d8b

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix a few typos

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/26/26c4b26f0cc51f04cdaba3c9e6ff09032bd10d8b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-04 17:12 [binutils-gdb] Add support for ARM Cortex-M33 processor sergiodj+buildbot
@ 2016-11-10 13:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4327>

Commit(s) tested:
	b19ea8d28b1c06c2973738c1cda076f895ac3ad0

Author(s) (in the same order as the commits):
	Thomas Preud'homme <thomas.preudhomme@arm.com>

Subject:
	Add support for ARM Cortex-M33 processor

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b1/b19ea8d28b1c06c2973738c1cda076f895ac3ad0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-04 23:14 [binutils-gdb] arc/nps400: Validate address type operands correctly sergiodj+buildbot
@ 2016-11-10 13:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4328>

Commit(s) tested:
	b437d035ddf4e4c0c566c577ee059790ed28ad9b

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	arc/nps400: Validate address type operands correctly

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b4/b437d035ddf4e4c0c566c577ee059790ed28ad9b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-04 14:52 [binutils-gdb] Fix building binutils for all 32-bit targets by moving riscv32 target into 64-bit builds only sergiodj+buildbot
@ 2016-11-10 13:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4326>

Commit(s) tested:
	1b7a12f2d68f2f334fbe78cc2db76982ba6d4ef1

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix building binutils for all 32-bit targets by moving riscv32 target into 64-bit builds only.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/1b/1b7a12f2d68f2f334fbe78cc2db76982ba6d4ef1/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 23:17 [binutils-gdb] Add support for untagged unions in Rust sergiodj+buildbot
@ 2016-11-10 13:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4324>

Commit(s) tested:
	b96645f1a1e6084ed6a20ddf615bdc4d2487a9c9

Author(s) (in the same order as the commits):
	Manish Goregaokar <manish@mozilla.com>

Subject:
	Add support for untagged unions in Rust

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/b9/b96645f1a1e6084ed6a20ddf615bdc4d2487a9c9/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 23:26 [binutils-gdb] Add support for the sizeof function in Rust sergiodj+buildbot
@ 2016-11-10 13:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4325>

Commit(s) tested:
	cdf5a07c75b47481da1e99ee91ee860c2a6bb5f6

Author(s) (in the same order as the commits):
	Manish Goregaokar <manish@mozilla.com>

Subject:
	Add support for the sizeof function in Rust

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cdf5a07c75b47481da1e99ee91ee860c2a6bb5f6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 18:59 [binutils-gdb] arc: Implement NPS-400 dcmac instruction sergiodj+buildbot
@ 2016-11-10 13:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4322>

Commit(s) tested:
	5a736821eff3aa4a8da237778526f9f700759c7a

Author(s) (in the same order as the commits):
	Graham Markall <graham.markall@embecosm.com>

Subject:
	arc: Implement NPS-400 dcmac instruction

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/5a/5a736821eff3aa4a8da237778526f9f700759c7a/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 23:05 [binutils-gdb] Fix handling of discriminantless univariant enums in Rust; fix bug with encoded enums sergiodj+buildbot
@ 2016-11-10 13:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4323>

Commit(s) tested:
	51a789c3bf3d9b04d3d81493fda7f2514ae43add

Author(s) (in the same order as the commits):
	Manish Goregaokar <manish@mozilla.com>

Subject:
	Fix handling of discriminantless univariant enums in Rust; fix bug with encoded enums

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/51/51a789c3bf3d9b04d3d81493fda7f2514ae43add/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 18:03 [binutils-gdb] opcodes/arc: Make some macros 64-bit safe sergiodj+buildbot
@ 2016-11-10 13:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4319>

Commit(s) tested:
	2e27220211249bfeb38b10e630b33fbd170fce6c

Author(s) (in the same order as the commits):
	Graham Markall <graham.markall@embecosm.com>

Subject:
	opcodes/arc: Make some macros 64-bit safe

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/2e/2e27220211249bfeb38b10e630b33fbd170fce6c/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 18:26 [binutils-gdb] arc: Change max instruction length to 64-bits sergiodj+buildbot
@ 2016-11-10 13:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4321>

Commit(s) tested:
	bdfe53e3cfebb392b1a0ef50fdd02faafec6dc63

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	arc: Change max instruction length to 64-bits

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/bd/bdfe53e3cfebb392b1a0ef50fdd02faafec6dc63/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 17:51 [binutils-gdb] arc: Replace ARC_SHORT macro with arc_opcode_len function sergiodj+buildbot
@ 2016-11-10 13:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4318>

Commit(s) tested:
	06fe285fd293e999481ec8f5c619658aa5e3b48b

Author(s) (in the same order as the commits):
	Graham Markall <graham.markall@embecosm.com>

Subject:
	arc: Replace ARC_SHORT macro with arc_opcode_len function

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/06/06fe285fd293e999481ec8f5c619658aa5e3b48b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 18:15 [binutils-gdb] arc: Swap highbyte and lowbyte in print_insn_arc sergiodj+buildbot
@ 2016-11-10 13:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4320>

Commit(s) tested:
	90f61cceac73fe40dcd21b3590c247bfa624ac00

Author(s) (in the same order as the commits):
	Graham Markall <graham.markall@embecosm.com>

Subject:
	arc: Swap highbyte and lowbyte in print_insn_arc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/90/90f61cceac73fe40dcd21b3590c247bfa624ac00/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 17:39 [binutils-gdb] arc/opcodes/nps400: Fix some instruction masks sergiodj+buildbot
@ 2016-11-10 13:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4317>

Commit(s) tested:
	ecf64ec654afe916099f0fe482c2dae417913905

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	arc/opcodes/nps400: Fix some instruction masks

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/ec/ecf64ec654afe916099f0fe482c2dae417913905/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 17:33 [binutils-gdb] X86: Reuse opcode 0x80 decoder for opcode 0x82 sergiodj+buildbot
@ 2016-11-10 13:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4316>

Commit(s) tested:
	d039fef395c1b5fd781acaf1c611f96f654f5f91

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	X86: Reuse opcode 0x80 decoder for opcode 0x82

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/d0/d039fef395c1b5fd781acaf1c611f96f654f5f91/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 17:21 [binutils-gdb] X86: Decode opcode 0x82 as opcode 0x80 in 32-bit mode sergiodj+buildbot
@ 2016-11-10 13:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4315>

Commit(s) tested:
	8b89fe14b522cd6e5d160ff17defa8ecec243b11

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	X86: Decode opcode 0x82 as opcode 0x80 in 32-bit mode

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/8b/8b89fe14b522cd6e5d160ff17defa8ecec243b11/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 16:43 [binutils-gdb] X86: Rename REG_82 to REG_83 sergiodj+buildbot
@ 2016-11-10 13:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4312>

Commit(s) tested:
	7148c36989ee64f15ac9618543309cd7311b6015

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	X86: Rename REG_82 to REG_83

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/71/7148c36989ee64f15ac9618543309cd7311b6015/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 17:04 [binutils-gdb] Replace YY_NULL with YY_NULLPTR in LANG-exp.c sergiodj+buildbot
@ 2016-11-10 13:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4314>

Commit(s) tested:
	722bcb33bf0383487c1af0e7d401e30301e94e2b

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Replace YY_NULL with YY_NULLPTR in LANG-exp.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/72/722bcb33bf0383487c1af0e7d401e30301e94e2b/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 16:59 [binutils-gdb] Deprecate old platforms sergiodj+buildbot
@ 2016-11-10 13:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4313>

Commit(s) tested:
	034b77cf7875c4ea5aaf3d06dfea2e422abc47db

Author(s) (in the same order as the commits):
	Tristan Gingold <gingold@adacore.com>

Subject:
	Deprecate old platforms

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/03/034b77cf7875c4ea5aaf3d06dfea2e422abc47db/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 16:27 [binutils-gdb] Remove GDBARCH_BREAKPOINT_MANIPULATION and SET_GDBARCH_BREAKPOINT_MANIPULATION sergiodj+buildbot
@ 2016-11-10 13:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4311>

Commit(s) tested:
	04180708eff91ddd3a9572bd4b517ccce5850db0

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove GDBARCH_BREAKPOINT_MANIPULATION and SET_GDBARCH_BREAKPOINT_MANIPULATION

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/04/04180708eff91ddd3a9572bd4b517ccce5850db0/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 16:26 [binutils-gdb] Remove arm_override_mode sergiodj+buildbot
@ 2016-11-10 13:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4310>

Commit(s) tested:
	a97c97e8d7c818886f0f7beb3fd5dee0042b4a07

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove arm_override_mode

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/a9/a97c97e8d7c818886f0f7beb3fd5dee0042b4a07/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 16:16 [binutils-gdb] Determine the kind of single step breakpoint sergiodj+buildbot
@ 2016-11-10 13:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4309>

Commit(s) tested:
	833b7ab5008b769dca6db6d5ee1d21d33e730132

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Determine the kind of single step breakpoint

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/83/833b7ab5008b769dca6db6d5ee1d21d33e730132/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 16:05 [binutils-gdb] Add default_breakpoint_from_pc sergiodj+buildbot
@ 2016-11-10 13:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4308>

Commit(s) tested:
	22f13eb869197fc45a0da2a8a96b03d39809862e

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Add default_breakpoint_from_pc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/22/22f13eb869197fc45a0da2a8a96b03d39809862e/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 15:50 [binutils-gdb] Remove gdbarch_remote_breakpoint_from_pc sergiodj+buildbot
@ 2016-11-10 13:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4307>

Commit(s) tested:
	c0f4a997c26760d2584946196ee5c411d1a632a6

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove gdbarch_remote_breakpoint_from_pc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/c0/c0f4a997c26760d2584946196ee5c411d1a632a6/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 15:46 [binutils-gdb] Rename placed_size to kind sergiodj+buildbot
@ 2016-11-10 13:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4306>

Commit(s) tested:
	579c6ad9830058ccebf9c592d692c25fac6285c7

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Rename placed_size to kind

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/57/579c6ad9830058ccebf9c592d692c25fac6285c7/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 15:40 [binutils-gdb] New gdbarch methods breakpoint_kind_from_pc and sw_breakpoint_from_kind sergiodj+buildbot
@ 2016-11-10 13:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10 13:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4305>

Commit(s) tested:
	cd6c3b4ffc4ea6f56f12581419e2eed885441beb

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	New gdbarch methods breakpoint_kind_from_pc and sw_breakpoint_from_kind

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/results/Fedora-ppc64le-m64/cd/cd6c3b4ffc4ea6f56f12581419e2eed885441beb/>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-03 15:14 [binutils-gdb] GDBARCH_BREAKPOINT_MANIPULATION and SET_GDBARCH_BREAKPOINT_MANIPULATION sergiodj+buildbot
@ 2016-11-10  2:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-10  2:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4302>

Commit(s) tested:
	598cc9dc84aeaa66e4a77efa9dc8ff03d5532620

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	GDBARCH_BREAKPOINT_MANIPULATION and SET_GDBARCH_BREAKPOINT_MANIPULATION

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a30abfbc35a697d1a954d0509902c9c2e1f04db2>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-11-01 17:00 [binutils-gdb] Add support for RISC-V architecture sergiodj+buildbot
@ 2016-11-08 23:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-08 23:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4294>

Commit(s) tested:
	e23eba971dd409b999dd83d8df0f842680c1c642

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add support for RISC-V architecture.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=982dad202c0d1d004e9b8586f45e15bcd76d3ba8>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=25cd9c2>

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-ppc64le-m64/xfails/master/xfail.table;hb=25cd9c2>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-26 20:33 [binutils-gdb] gdb: Free inferior->priv when inferior exits sergiodj+buildbot
@ 2016-11-04 22:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-11-04 22:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4266>

Commit(s) tested:
	ef4a339527a41802fbab70af25d6e4788f35dcc8

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: Free inferior->priv when inferior exits

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=49360a698b348162c85da1a6bcfeee415475f33e>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/no-thread-db.exp: libthread-db is now unresolvable
PASS -> FAIL: gdb.server/no-thread-db.exp: continue to breakpoint: after tls assignment
PASS -> FAIL: gdb.server/no-thread-db.exp: print foo
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=0a2a641>

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-ppc64le-m64/xfails/master/xfail.table;hb=0a2a641>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-26 16:05 [binutils-gdb] gdb: Clean up remote.c:remote_resume sergiodj+buildbot
@ 2016-10-26 18:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-26 18:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4261>

Commit(s) tested:
	7b68ffbb32645c5383e74f27248a1c1c7ecd241a

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: Clean up remote.c:remote_resume

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=72566144caf857df3502ff8251550203e83c7317>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/maint.exp: mt set per on for expand-symtabs
PASS -> FAIL: gdb.dwarf2/dw2-op-call.exp: p arraycallnoloc
new FAIL: gdb.gdb/selftest.exp: unknown source line
PASS -> FAIL: gdb.gdb/selftest.exp: step into xmalloc call
PASS -> FAIL: gdb.opt/clobbered-registers-O2.exp: print operand0
PASS -> FAIL: gdb.opt/clobbered-registers-O2.exp: print operand1
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=0a2a641>

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-ppc64le-m64/xfails/master/xfail.table;hb=0a2a641>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-25  5:31 [binutils-gdb] ARM/BFD: Correct an `index' global shadowing error sergiodj+buildbot
@ 2016-10-25 20:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-25 20:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4259>

Commit(s) tested:
	c48182bfe408e06e3301ee887fd9a7b06bedff37

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	ARM/BFD: Correct an `index' global shadowing error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c334bfcf3f5352fc89a547fb5e3cd3cb8229cb09>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/altivec-regs.exp: info reg vscr
PASS -> FAIL: gdb.arch/altivec-regs.exp: print vscr
PASS -> FAIL: gdb.arch/altivec-regs.exp: info vector
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=0a2a641>

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-ppc64le-m64/xfails/master/xfail.table;hb=0a2a641>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-17 23:24 [binutils-gdb] Fix duplicate test message in mi-trace-save.exp sergiodj+buildbot
@ 2016-10-18  9:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-18  9:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4255>

Commit(s) tested:
	e42b25a0407fbbf3529815f69bd56a61b1821295

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix duplicate test message in mi-trace-save.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=33b4e55706a8b315e34e644532b5c8dbda452c35>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=a307a92>

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-ppc64le-m64/xfails/master/xfail.table;hb=a307a92>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-17 21:05 [binutils-gdb] Fix -trace-save crash when argument is missing sergiodj+buildbot
@ 2016-10-18  2:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-18  2:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4253>

Commit(s) tested:
	5bad3170301060ee0801a739ffc213abae664973

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix -trace-save crash when argument is missing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=0cfe2bb78d3a941191cb2ae920bb5a340f1311d6>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/user-selected-context-sync.exp: mode=non-stop: test_setup: switch to inferior 2
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=a307a92>

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-ppc64le-m64/xfails/master/xfail.table;hb=a307a92>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-17 16:34 [binutils-gdb] gdb: Fix phony iconv build sergiodj+buildbot
@ 2016-10-17 22:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-17 22:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4252>

Commit(s) tested:
	5562a44eb490b5777c9e786971907c0727d88495

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: Fix phony iconv build

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=344a5f0dce5091ebded6d0db3e92aa26beaf8d1a>

*** Diff to previous build ***
============================
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
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=a307a92>

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-ppc64le-m64/xfails/master/xfail.table;hb=a307a92>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-17 13:56 [binutils-gdb] Removed pseudo invalid instructions opcodes sergiodj+buildbot
@ 2016-10-17 19:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-17 19:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4251>

Commit(s) tested:
	decf5bd1570be3de10aeab99869a9548d17b1354

Author(s) (in the same order as the commits):
	Cupertino Miranda <cmiranda@synopsys.com>

Subject:
	Removed pseudo invalid instructions opcodes.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d277d1ba5c221e07f7a4c0074dc44523dc9e0b2e>

*** Diff to previous build ***
============================
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 ***

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-ppc64le-m64/xfails/master/xfail;hb=a307a92>

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-ppc64le-m64/xfails/master/xfail.table;hb=a307a92>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-14 16:29 [binutils-gdb] Move OVERRIDE/FINAL from gcc/coretypes.h to include/ansidecl.h sergiodj+buildbot
@ 2016-10-15 10:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-15 10:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4246>

Commit(s) tested:
	d118ee3761bcf0c861a75e454d0c2b741fccb956

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Move OVERRIDE/FINAL from gcc/coretypes.h to include/ansidecl.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e4f479a08995a8350fbff311e221f88296076fb1>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=3452644>

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-ppc64le-m64/xfails/master/xfail.table;hb=3452644>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-14 13:25 [binutils-gdb] Fix set sysroot command on AIX sergiodj+buildbot
@ 2016-10-15  6:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-15  6:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4245>

Commit(s) tested:
	754c39c2f32a796ad9983836deb7c4429c808e48

Author(s) (in the same order as the commits):
	Ulrich Weigand <ulrich.weigand@de.ibm.com>

Subject:
	Fix set sysroot command on AIX

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9dedff8174f636b058d6dedad8c7c1d3491e21a4>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/paginate-bg-execution.exp: cancel with ctrl-c: set height unlimited
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 ***

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-ppc64le-m64/xfails/master/xfail;hb=3452644>

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-ppc64le-m64/xfails/master/xfail.table;hb=3452644>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-14  7:30 [binutils-gdb] Include strings.h where available sergiodj+buildbot
@ 2016-10-14 17:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-14 17:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4241>

Commit(s) tested:
	8ffc1bb12a22e548835c9291871ad0eb68b7f6f0

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-ppc64le-m64/.git/tree/?h=master&id=cb2a8d0b1d38f84bd531c8de306a62fbafd69a79>

*** Diff to previous build ***
============================
new FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: kill all one
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 0
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 1
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 2
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 3
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 4
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 5
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 6
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 7
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 8
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 9
new FAIL: gdb.base/checkpoint.exp: no more checkpoint 10
new FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork one
new FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork two
new FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork three
new FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork four
new FAIL: gdb.base/checkpoint-ns.exp: Exit, dropped into next fork five
new FAIL: gdb.base/checkpoint-ns.exp: info checkpoints two
new FAIL: gdb.base/checkpoint-ns.exp: kill all one
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 0
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 1
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 2
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 3
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 4
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 5
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 6
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 7
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 8
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 9
new FAIL: gdb.base/checkpoint-ns.exp: no more checkpoint 10
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: disp *p_i
new FAIL: gdb.base/display.exp: p p_i = 0x0
new FAIL: gdb.base/display.exp: display bad address
new FAIL: gdb.base/display.exp: p p_i = &i
new FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off
new FAIL: gdb.base/display.exp: finish
new FAIL: gdb.base/display.exp: step
new FAIL: gdb.base/display.exp: cont
new FAIL: gdb.base/display.exp: printf "%d%d",i
new FAIL: gdb.base/display.exp: print/k j
new FAIL: gdb.base/display.exp: debug test output 1
new FAIL: gdb.base/display.exp: debug test output 1a
new FAIL: gdb.base/display.exp: debug test output 2
new FAIL: gdb.base/display.exp: debug test output 2a
new FAIL: gdb.base/display.exp: debug test output 3
new FAIL: gdb.base/display.exp: x/0 j
new FAIL: gdb.base/display.exp: ignored s
new FAIL: gdb.base/display.exp: print/a $pc
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/pr11022.exp: watchpoint hit
new FAIL: gdb.base/pr11022.exp: watchpoint hit 2
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
new FAIL: gdb.base/recurse.exp: continue to recurse
new FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
new FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/value-double-free.exp: print empty
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: set static local watch
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
new FAIL: gdb.base/watchpoint.exp: watch $pc
new FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
new FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
new FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4
new FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
new FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
new FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
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/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: annotate-quit
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler.
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame
new FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
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
new FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
new FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
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": watchpoint hit 2
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": watchpoint hit 2
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: reverse-finish from void_func trips breakpoint at entry
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: no spurious proceed after breakpoint stop
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from int_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from short_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from char_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from void_func
new FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: reverse-next over call trips user breakpoint at function entry
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: stopped at the right callee call
new FAIL: gdb.server/ext-wrapper.exp: run to marker
new FAIL: gdb.server/ext-wrapper.exp: print d
new FAIL: gdb.server/ext-wrapper.exp: restart: print d
new FAIL: gdb.server/ext-wrapper.exp: monitor exit
new FAIL: gdb.server/wrapper.exp: print d
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
new 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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
new 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
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
new FAIL: gdb.threads/continue-pending-status.exp: no thread starvation
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
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: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
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
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=3452644>

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-ppc64le-m64/xfails/master/xfail.table;hb=3452644>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13 17:38 [binutils-gdb] ARI: Remove true/false checks sergiodj+buildbot
@ 2016-10-13 17:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13 17:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4239>

Commit(s) tested:
	1f2e9c5e3b0ef55cb0ab180dd0c82c7954a73e1a

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	ARI: Remove true/false checks

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1f2e9c5e3b0ef55cb0ab180dd0c82c7954a73e1a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13 15:27 [binutils-gdb] Share proc get_var_address sergiodj+buildbot
@ 2016-10-13 16:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13 16:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4238>

Commit(s) tested:
	5ad9dba7519caa3e6193c87699ae37e24d0fe05c

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Share proc get_var_address

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5ad9dba7519caa3e6193c87699ae37e24d0fe05c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13 14:54 [binutils-gdb] Skip testing structures with floating points sergiodj+buildbot
@ 2016-10-13 14:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13 14:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4237>

Commit(s) tested:
	62df7e210ebf096dc09ad14d9316fcda0f6217f7

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Skip testing structures with floating points

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 62df7e210ebf096dc09ad14d9316fcda0f6217f7>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13  5:24 [binutils-gdb] Use std::string in macho_symfile_read_all_oso sergiodj+buildbot
@ 2016-10-13  6:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13  6:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4236>

Commit(s) tested:
	af533a5f8b149bfa1394ab04c3947e97dd507a33

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Use std::string in macho_symfile_read_all_oso

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for af533a5f8b149bfa1394ab04c3947e97dd507a33>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13  4:50 [binutils-gdb] Remove unnecessary null_cleanup sergiodj+buildbot
@ 2016-10-13  5:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13  5:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4235>

Commit(s) tested:
	d1a760cbb796b62f18ff6b81a189fd261809ef74

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Remove unnecessary null_cleanup

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for d1a760cbb796b62f18ff6b81a189fd261809ef74>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13  2:59 [binutils-gdb] Turn wchar iterator into a class sergiodj+buildbot
@ 2016-10-13  3:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13  3:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4234>

Commit(s) tested:
	cda6c55bd399a8892d62178d4daeb074def909e0

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Turn wchar iterator into a class

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for cda6c55bd399a8892d62178d4daeb074def909e0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13  2:25 [binutils-gdb] Change selttest.c to use use std::vector sergiodj+buildbot
@ 2016-10-13  2:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13  2:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4233>

Commit(s) tested:
	816d7b53047bca81c226990bc9248d59d80d4b8b

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Change selttest.c to use use std::vector

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 816d7b53047bca81c226990bc9248d59d80d4b8b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-13  1:21 [binutils-gdb] Convert tid_range_parser and get_number_or_range to classes sergiodj+buildbot
@ 2016-10-13  1:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-13  1:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4232>

Commit(s) tested:
	bfd282882d534cd4f48e2fc29d4ce0923c52352b

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Convert tid_range_parser and get_number_or_range to classes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bfd282882d534cd4f48e2fc29d4ce0923c52352b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-12 15:51 [binutils-gdb] Fixup gdb.python/py-value.exp for bare-metal aarch64-elf sergiodj+buildbot
@ 2016-10-12 18:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-12 18:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4231>

Commit(s) tested:
	4dac951e11030b43b17f52df8bdfa7432e4bf73c

Author(s) (in the same order as the commits):
	Luis Machado <lgustavo@codesourcery.com>

Subject:
	Fixup gdb.python/py-value.exp for bare-metal aarch64-elf

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4dac951e11030b43b17f52df8bdfa7432e4bf73c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-12 16:00 [binutils-gdb] arc: Add support for Newlib sergiodj+buildbot
@ 2016-10-12 16:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-12 16:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4230>

Commit(s) tested:
	4a2f4826907de97b089295000a67d2497aa94c99

Author(s) (in the same order as the commits):
	Anton Kolesov <Anton.Kolesov@synopsys.com>

Subject:
	arc: Add support for Newlib

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4a2f4826907de97b089295000a67d2497aa94c99>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-12 13:32 [binutils-gdb] arc: Add evaluation of long jump targets sergiodj+buildbot
@ 2016-10-12 15:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-12 15:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4229>

Commit(s) tested:
	aaf43c4882f827d9f778b40dcdb93566f765f5f9

Author(s) (in the same order as the commits):
	Anton Kolesov <Anton.Kolesov@synopsys.com>

Subject:
	arc: Add evaluation of long jump targets

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for aaf43c4882f827d9f778b40dcdb93566f765f5f9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-12 13:03 [binutils-gdb] arc: Add a gdbarch_tdep structure sergiodj+buildbot
@ 2016-10-12 14:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-12 14:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4228>

Commit(s) tested:
	b845c31ecc4fe2677f1d938b0d8a3dc98397158e

Author(s) (in the same order as the commits):
	Anton Kolesov <Anton.Kolesov@synopsys.com>

Subject:
	arc: Add a gdbarch_tdep structure

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b845c31ecc4fe2677f1d938b0d8a3dc98397158e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-12 11:51 [binutils-gdb] [AArch64] Track FP registers in prologue analyzer sergiodj+buildbot
@ 2016-10-12 11:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-12 11:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4226>

Commit(s) tested:
	187f5d00acf0ffe5390f282fd4d6285bcd6fccb9

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 187f5d00acf0ffe5390f282fd4d6285bcd6fccb9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-11 23:35 [binutils-gdb] BFD_FAKE_SECTION macro params sergiodj+buildbot
@ 2016-10-11 23:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-11 23:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4225>

Commit(s) tested:
	821e6ff6299aa39e841ca50e1ae8a98e3554fd5f

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	BFD_FAKE_SECTION macro params

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 821e6ff6299aa39e841ca50e1ae8a98e3554fd5f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-11 17:27 [binutils-gdb] testsuite: Fix gdb.arch/powerpc-prologue.c compilation sergiodj+buildbot
@ 2016-10-11 17:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-11 17:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4224>

Commit(s) tested:
	8f1a8fc4df2244f548d55fbecce20b7cd6f90e16

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: Fix gdb.arch/powerpc-prologue.c compilation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8f1a8fc4df2244f548d55fbecce20b7cd6f90e16>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-11 15:00 [binutils-gdb] testsuite: Use standard_output_file sergiodj+buildbot
@ 2016-10-11 15:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-11 15:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4223>

Commit(s) tested:
	16c85b5d14a04c275d3cb39b2029f3dc0f708531

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: Use standard_output_file

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 16c85b5d14a04c275d3cb39b2029f3dc0f708531>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-11 10:42 [binutils-gdb] [AArch64] PR target/20666, fix wrong encoding of new introduced BFC pseudo sergiodj+buildbot
@ 2016-10-11 10:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-11 10:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4222>

Commit(s) tested:
	93562a343c26f67d2bd0e93cceb18a0a793087c2

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[AArch64] PR target/20666, fix wrong encoding of new introduced BFC pseudo

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 93562a343c26f67d2bd0e93cceb18a0a793087c2>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-11  7:59 [binutils-gdb] Always descend into output section statements in lang_do_assignments sergiodj+buildbot
@ 2016-10-11  7:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-11  7:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4221>

Commit(s) tested:
	f02cb058822459ea29a9fdaa928c2623df435908

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Always descend into output section statements in lang_do_assignments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f02cb058822459ea29a9fdaa928c2623df435908>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-10 11:41 [binutils-gdb] Share enum arm_breakpoint_kinds sergiodj+buildbot
@ 2016-10-10 12:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-10 12:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4220>

Commit(s) tested:
	a1078bea751d48e8846b91542d91647f1e0aed8d

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Share enum arm_breakpoint_kinds

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a1078bea751d48e8846b91542d91647f1e0aed8d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-10 10:37 [binutils-gdb] Rename 'arch' by 'gdbarch' in m32c_gdbarch_init sergiodj+buildbot
@ 2016-10-10 11:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-10 11:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4219>

Commit(s) tested:
	97ce08cb8071bf9a8df6c99cdf8e9fbf1911f3f5

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Rename 'arch' by 'gdbarch' in m32c_gdbarch_init

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 97ce08cb8071bf9a8df6c99cdf8e9fbf1911f3f5>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-10  9:44 [binutils-gdb] Remove v850_dbtrap_breakpoint_from_pc sergiodj+buildbot
@ 2016-10-10  9:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-10  9:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4218>

Commit(s) tested:
	ff12a6593a1675aa9ba5340aa2984af19cf8966c

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove v850_dbtrap_breakpoint_from_pc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ff12a6593a1675aa9ba5340aa2984af19cf8966c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-09  0:26 [binutils-gdb] ui-out.c: Remove unused parameter to push_level sergiodj+buildbot
@ 2016-10-09  4:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-09  4:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4216>

Commit(s) tested:
	49d06418ada11004ca1cdc0ec5847358e83fc67a

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	ui-out.c: Remove unused parameter to push_level

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 49d06418ada11004ca1cdc0ec5847358e83fc67a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-07 10:19 [binutils-gdb] [AArch64] PR target/20667, fix disassembler for the "special" optional SYS_Rt operand for "ic"/"tlbi" sergiodj+buildbot
@ 2016-10-09  0:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-09  0:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4213>

Commit(s) tested:
	362c0c4d9cc9f320d1e85755404879a13ebed91a

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[AArch64] PR target/20667, fix disassembler for the "special" optional SYS_Rt operand for "ic"/"tlbi"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 362c0c4d9cc9f320d1e85755404879a13ebed91a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-07 10:50 [binutils-gdb] Set regdir in tdesc-regs.exp or arm sergiodj+buildbot
@ 2016-10-08 23:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-08 23:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4212>

Commit(s) tested:
	1d0e042a8321cca82cce521afd276a8494385ae3

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Set regdir in tdesc-regs.exp or arm

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1d0e042a8321cca82cce521afd276a8494385ae3>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-07  7:22 [binutils-gdb] python: accept address and explicit locations in gdb.decode_line sergiodj+buildbot
@ 2016-10-08 21:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-08 21:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4211>

Commit(s) tested:
	68dadef54c216f7ec75c27d74193897b18c5f9ab

Author(s) (in the same order as the commits):
	Markus Metzger <markus.t.metzger@intel.com>

Subject:
	python: accept address and explicit locations in gdb.decode_line

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 68dadef54c216f7ec75c27d74193897b18c5f9ab>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-10-07  2:07 [binutils-gdb] Pass link_info to _bfd_merge_private_bfd_data sergiodj+buildbot
@ 2016-10-08 20:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-10-08 20:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4210>

Commit(s) tested:
	50e03d47b77d5730f96f6b6bb66187654e66c797

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Pass link_info to _bfd_merge_private_bfd_data

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 50e03d47b77d5730f96f6b6bb66187654e66c797>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-29 17:39 [binutils-gdb] Disallow 3-operand cmp[l][i] for ppc64 sergiodj+buildbot
@ 2016-09-29 17:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-29 17:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4159>

Commit(s) tested:
	a5721ba270ddf860e0e5a45bba456214e8eac2be

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Disallow 3-operand cmp[l][i] for ppc64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=baa0d3880b21f37f2fab7725b2e7214bab18ff4b>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4184: cmprb   cr0,r8,r9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4188: cmprb   cr7,r8,r9
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=f199f47>

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-ppc64le-m64/xfails/master/xfail.table;hb=f199f47>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-19  6:16 [binutils-gdb] gdb: Fix std::{min, max}-related build breakage on 32-bit hosts sergiodj+buildbot
@ 2016-09-20 13:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-20 13:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4087>

Commit(s) tested:
	768adc05c44c7e8b5c0f9ca5ad3ca96657715293

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: Fix std::{min, max}-related build breakage on 32-bit hosts

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=07729d7677d7370f1b6baad0337ab1207da628f4>

*** Diff to previous build ***
============================
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: detach
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: detach
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=ffd9045>

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-ppc64le-m64/xfails/master/xfail.table;hb=ffd9045>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-15 21:47 [binutils-gdb] Modify POWER9 support to match final ISA 3.0 documentation sergiodj+buildbot
@ 2016-09-15 21:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-15 21:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4070>

Commit(s) tested:
	fd486b633e87f8ab2977592d56a6d98168814e2e

Author(s) (in the same order as the commits):
	Peter Bergner <bergner@vnet.ibm.com>

Subject:
	Modify POWER9 support to match final ISA 3.0 documentation.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=808b0e7d1c753b70ba02d562b94443369189c7e7>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4432: copy    r12,r13
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4436: copy_first r12,r13
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4440: copy_first r12,r13
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4444: paste   r10,r11
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4448: paste   r10,r11
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4452: paste_last r10,r11
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4456: paste_last r10,r11
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4460: cp_abort
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=bbb413d>

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-ppc64le-m64/xfails/master/xfail.table;hb=bbb413d>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-07  5:56 [binutils-gdb] Introduce make_cleanup_restore_current_ui sergiodj+buildbot
@ 2016-09-09 18:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-09 18:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4053>

Commit(s) tested:
	a025b477cc466112af0b120c5f2bf5d62a62017e

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):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=bcc456e961a48935ced3ba515acf7d9390031a2d>

*** 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.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=bbb413d>

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-ppc64le-m64/xfails/master/xfail.table;hb=bbb413d>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-06 23:37 [binutils-gdb] Add missing format for built-in floating-point types sergiodj+buildbot
@ 2016-09-07 12:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-07 12:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4047>

Commit(s) tested:
	49f190bcb7f074ea2e27d4e967e4fae9ed7dafb6

Author(s) (in the same order as the commits):
	Ulrich Weigand <ulrich.weigand@de.ibm.com>

Subject:
	Add missing format for built-in floating-point types

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=5c4b24b39054899d10f56aebde3648b9847d7149>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: connect and print pc
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: print pc again
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=bbb413d>

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-ppc64le-m64/xfails/master/xfail.table;hb=bbb413d>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-05 19:41 [binutils-gdb] Removed redundant line remote-utils.c sergiodj+buildbot
@ 2016-09-05 20:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-05 20:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4036>

Commit(s) tested:
	c1da6748f560ec19173d5d7766e0d497e8a0f1e4

Author(s) (in the same order as the commits):
	Akash Trehan <akash.trehan123@gmail.com>

Subject:
	Removed redundant line remote-utils.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6d4f39048fc6f19d71db24331de949db715f093b>

*** Diff to previous build ***
============================
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/wrapper.exp: continue to marker
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=cd4ee90>

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-ppc64le-m64/xfails/master/xfail.table;hb=cd4ee90>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-03 12:46 [binutils-gdb] Handle DW_OP_form_tls_address sergiodj+buildbot
@ 2016-09-05 18:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-05 18:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4035>

Commit(s) tested:
	4aa4e28bdcf5f0d733def62b542fea11d5f219d5

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Handle DW_OP_form_tls_address

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=2bf2397378eb773bfbae0828d1dbd30e452e0d19>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/connect-with-no-symbol-file.exp: sysroot=: action=permission: connection to GDBserver succeeded
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=cd4ee90>

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-ppc64le-m64/xfails/master/xfail.table;hb=cd4ee90>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-09-02  9:02 [binutils-gdb] Use target_continue{, _no_signal} instead of target_resume sergiodj+buildbot
@ 2016-09-02  8:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-09-02  8:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/4030>

Commit(s) tested:
	049a857091cff98371b5688140832a3cf767153c

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Use target_continue{,_no_signal} instead of target_resume

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=83a59f053da874d9c4185991395db5eb5eb46cac>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/ext-wrapper.exp: run to marker
PASS -> FAIL: gdb.server/ext-wrapper.exp: print d
PASS -> FAIL: gdb.server/ext-wrapper.exp: restart: print d
PASS -> FAIL: gdb.server/ext-wrapper.exp: monitor exit
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/wrapper.exp: continue to marker
PASS -> FAIL: gdb.server/wrapper.exp: print d
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=cd4ee90>

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-ppc64le-m64/xfails/master/xfail.table;hb=cd4ee90>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-24 20:24 [binutils-gdb] Allow resetting an empty inferior-tty sergiodj+buildbot
@ 2016-08-25  9:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-25  9:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3992>

Commit(s) tested:
	0a1ddfa6b67201bb06f51fb47b56096e81bec5c0

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-ppc64le-m64/.git/tree/?h=master&id=0f4e85a05392e31a1aa5f089c9862ba13ccbe397>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/signals-state-child.exp: signals states are identical
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=0b3fd8d>

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-ppc64le-m64/xfails/master/xfail.table;hb=0b3fd8d>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-20  9:29 [binutils-gdb] Fix missing files for ld when test suite not compiled in the source directory sergiodj+buildbot
@ 2016-08-22 19:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-22 19:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3966>

Commit(s) tested:
	20c2c024c1e89e402a57e8c3577fb9777709d9a4

Author(s) (in the same order as the commits):
	Carl E. Love <carll@oc4738070240.ibm.com>

Subject:
	Fix missing files for ld when test suite not compiled in the source directory

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=459daebc6788d3e530b740190a93a1778338752b>

*** Diff to previous build ***
============================
new FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
new FAIL: gdb.arch/vsx-regs.exp: Save a VSX-enabled corefile
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=e9db3e8>

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-ppc64le-m64/xfails/master/xfail.table;hb=e9db3e8>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-11  0:35 [binutils-gdb] Support setting thread names (MS-Windows) sergiodj+buildbot
@ 2016-08-11  0:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-11  0:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3911>

Commit(s) tested:
	24cdb46e9f0a694b4fbc11085e094857f08c0419

Author(s) (in the same order as the commits):
	Руслан Ижбулатов <lrn1986@gmail.com>

Subject:
	Support setting thread names (MS-Windows)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 24cdb46e9f0a694b4fbc11085e094857f08c0419>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-10 21:20 [binutils-gdb] Quiet ARI gettext checks sergiodj+buildbot
@ 2016-08-10 22:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-10 22:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3910>

Commit(s) tested:
	669f9429c7b5a9e827497c5ad70efb6a570c8c7d

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):
	<Error fetching commit ID for 669f9429c7b5a9e827497c5ad70efb6a570c8c7d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-10  1:19 [binutils-gdb] Fix PR gdb/20418 - Problems with synchronous commands and new-ui sergiodj+buildbot
@ 2016-08-10  3:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-10  3:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3906>

Commit(s) tested:
	3eb7562a983bab4c768983bcd85708852d171121

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR gdb/20418 - Problems with synchronous commands and new-ui

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3eb7562a983bab4c768983bcd85708852d171121>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-10  0:26 [binutils-gdb] Fix PR mi/20431 - Missing MI prompts after sync execution MI command (-exec-continue, etc.) errors sergiodj+buildbot
@ 2016-08-10  1:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-10  1:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3905>

Commit(s) tested:
	80614914274f7166baea2ec656aec6a949869324

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):
	<Error fetching commit ID for 80614914274f7166baea2ec656aec6a949869324>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-09 22:30 [binutils-gdb] Fix PR gdb/18653: gdb disturbs inferior's inherited signal dispositions sergiodj+buildbot
@ 2016-08-09 22:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 22:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3903>

Commit(s) tested:
	f348d89aeccaf3eb613e2f31a823baa64300bf88

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):
	<Error fetching commit ID for f348d89aeccaf3eb613e2f31a823baa64300bf88>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-09 20:38 [binutils-gdb] Correct the calculation of the use_counts of merged .got entries sergiodj+buildbot
@ 2016-08-09 22:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-09 22:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3902>

Commit(s) tested:
	68994ca2c06b55c46e53d670bc10869e7f1bc5fe

Author(s) (in the same order as the commits):
	Jiaming Wei <jmwei@hxgpt.com>

Subject:
	Correct the calculation of the use_counts of merged .got entries.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 68994ca2c06b55c46e53d670bc10869e7f1bc5fe>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-05 22:57 [binutils-gdb] Remove unused cli_command_loop declaration sergiodj+buildbot
@ 2016-08-07 20:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-07 20:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3894>

Commit(s) tested:
	c632e428c2fd707b83a2c61e0b25b473e3d7d18e

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Remove unused cli_command_loop declaration

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=41b09aef790633d2f6b36b8ab29e808459b67afb>

*** 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.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: detach
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: detach
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: detach
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: detach
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=652f567>

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-ppc64le-m64/xfails/master/xfail.table;hb=652f567>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-04 11:45 [binutils-gdb] Determine target description for native aarch64 sergiodj+buildbot
@ 2016-08-04 15:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-04 15:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3884>

Commit(s) tested:
	6f67973b4280cfd045e632a3340becd16e43b4b1

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Determine target description for native aarch64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=762e9aca78e74ef131ce5811bdaefd81bc781cf8>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=652f567>

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-ppc64le-m64/xfails/master/xfail.table;hb=652f567>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-08-01 13:20 [binutils-gdb] Swap "single-process" and "multi-process" in process-dies-while-detaching.exp sergiodj+buildbot
@ 2016-08-01 15:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-01 15:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3862>

Commit(s) tested:
	41bfcd638a4e0e48b96ce4de2845372dea481322

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Swap "single-process" and "multi-process" in process-dies-while-detaching.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d00855df949fcff2a583c3a634623991d35108f8>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: detach
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue
PASS -> FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: detach child
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=652f567>

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-ppc64le-m64/xfails/master/xfail.table;hb=652f567>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <7bd374a44d1db21b54a9a52ecde1d064cdaa8cd1@gdb-build>
@ 2016-08-01  9:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-08-01  9:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3858>

Commit(s) tested:
	7bd374a44d1db21b54a9a52ecde1d064cdaa8cd1

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/GAS: Implement microMIPS branch/jump compaction

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e4b4e4b0075eb8fe21dc7f61c4d2e094a25c6381>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/ext-run.exp: get process list
PASS -> FAIL: gdb.server/ext-run.exp: load new file without any gdbserver inferior
PASS -> FAIL: gdb.server/ext-run.exp: monitor exit
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=c5eca1e>

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-ppc64le-m64/xfails/master/xfail.table;hb=c5eca1e>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-22 17:58 [binutils-gdb] Get "num" as unsigned in ctf sergiodj+buildbot
@ 2016-07-27 11:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-27 11:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3838>

Commit(s) tested:
	eed2386e45968fa4fee8d093895f4789044fb077

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Get "num" as unsigned in ctf

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=7f6cf240e58002323c295fb61a7d718609cadad6>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.server/ext-run.exp: get process list
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=3c0f677>

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-ppc64le-m64/xfails/master/xfail.table;hb=3c0f677>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-19 10:01 [binutils-gdb] Use do_self_tests in selftest.exp sergiodj+buildbot
@ 2016-07-23 22:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-23 22:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3802>

Commit(s) tested:
	f25827c194fe9894f2c65f7e1101854022be4328

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Use do_self_tests in selftest.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=f8885ada1b907d23f5936c0d5d7c94252cad69d8>

*** Diff to previous build ***
============================
new FAIL: gdb.gdb/selftest.exp: unknown source line
new FAIL: gdb.gdb/selftest.exp: step into xmalloc call
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=3c0f677>

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-ppc64le-m64/xfails/master/xfail.table;hb=3c0f677>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-13 21:51 [binutils-gdb] PR python/15620, PR python/18620 - breakpoint events in Python sergiodj+buildbot
@ 2016-07-21 19:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-21 19:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3780>

Commit(s) tested:
	dac790e1b9048a318e1882979d7188d82c3bd757

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	PR python/15620, PR python/18620 - breakpoint events in Python

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=1123b692f214f688655f3323d49575b7ca09ef0b>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=66ab25e>

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-ppc64le-m64/xfails/master/xfail.table;hb=66ab25e>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-07 15:52 [binutils-gdb] Fix of default lookup for "this" symbol sergiodj+buildbot
@ 2016-07-20  2:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-20  2:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3761>

Commit(s) tested:
	4f19a0e6b45c63c0b4afe27a19d144cca412d4ae

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	Fix of default lookup for "this" symbol.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=cb8721c529c61f21f66a4bd4cd0676e58eb0ea64>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.cp/scope-err.exp: print var from "C:/does/not/exist.cc"
PASS -> FAIL: gdb.linespec/ls-errs.exp: lang=C++: break "spaces: and :colons.c":3
PASS -> FAIL: gdb.linespec/ls-errs.exp: lang=C++: break C:/nonexist-with-windrive.c:3
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=7be0da6>

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-ppc64le-m64/xfails/master/xfail.table;hb=7be0da6>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06 15:43 [binutils-gdb] Remove extraneous parentheses sergiodj+buildbot
@ 2016-07-19 16:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-19 16:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3758>

Commit(s) tested:
	fb36c6bf0a019e7b989e61710f17b5ce4ec27686

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Remove extraneous parentheses.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=515d4062ce5aab95b6ab82dfbb81f142b2cff18b>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: detach: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: watchpoint: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: detach: killed outside: detach
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: detach: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: watchpoint: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: multi-process: continue: killed outside: continue
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: detach: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: detach: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: watchpoint: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: continue to breakpoint: _exit
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: detach child
new FAIL: gdb.threads/process-dies-while-detaching.exp: single-process: continue: killed outside: 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/Fedora-ppc64le-m64/xfails/master/xfail;hb=7be0da6>

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-ppc64le-m64/xfails/master/xfail.table;hb=7be0da6>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06 15:28 [binutils-gdb] Use unsigned integer constant with left shifts sergiodj+buildbot
@ 2016-07-06 18:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-06 18:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3757>

Commit(s) tested:
	db297a6501dc44c10bff096eddcc358b48810aad

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Use unsigned integer constant with left shifts.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for db297a6501dc44c10bff096eddcc358b48810aad>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06 14:25 [binutils-gdb] Set uses_fp for frames with a valid FP register explicitly sergiodj+buildbot
@ 2016-07-06 17:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-06 17:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3756>

Commit(s) tested:
	9ca107148e888a7f7aaf3582569708684bd04690

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Set uses_fp for frames with a valid FP register explicitly.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9ca107148e888a7f7aaf3582569708684bd04690>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06 13:45 [binutils-gdb] Remove check for negative size sergiodj+buildbot
@ 2016-07-06 15:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-06 15:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3755>

Commit(s) tested:
	d66ff635bec25bf940cc6d173a92f7796f18b310

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Remove check for negative size.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for d66ff635bec25bf940cc6d173a92f7796f18b310>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06 13:14 [binutils-gdb] Use 'ptid_t' instead of 'ptid' for fbsd_next_vfork_done's return type sergiodj+buildbot
@ 2016-07-06 14:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-06 14:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3754>

Commit(s) tested:
	ee950322ca2c77494b1742f304632f667ed6ce79

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Use 'ptid_t' instead of 'ptid' for fbsd_next_vfork_done's return type.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ee950322ca2c77494b1742f304632f667ed6ce79>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06  7:38 [binutils-gdb] [ARM] Fix endless recursion on calculating CPRC candidate sergiodj+buildbot
@ 2016-07-06  8:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-06  8:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3753>

Commit(s) tested:
	1040b979bc46474530fa4fee397b8acc460c01e9

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Fix endless recursion on calculating CPRC candidate

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1040b979bc46474530fa4fee397b8acc460c01e9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-06  5:38 [binutils-gdb] Allow subscripting raw pointers sergiodj+buildbot
@ 2016-07-06  6:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-06  6:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3752>

Commit(s) tested:
	42d940118a6372d6e85f71a54fed75fdf5c606bd

Author(s) (in the same order as the commits):
	Manish Goregaokar <manish@mozilla.com>

Subject:
	Allow subscripting raw pointers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 42d940118a6372d6e85f71a54fed75fdf5c606bd>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-05 14:06 [binutils-gdb] Fix fail in gdb.mi/mi-reverse.exp sergiodj+buildbot
@ 2016-07-05 15:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-05 15:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3751>

Commit(s) tested:
	647c264cb2c60c90ee2d09edb6bd001ff357306d

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Fix fail in gdb.mi/mi-reverse.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 647c264cb2c60c90ee2d09edb6bd001ff357306d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-05 11:42 [binutils-gdb] [ARM] Purecode compatible long branch veneer for M-profile targets with MOVW sergiodj+buildbot
@ 2016-07-05 13:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-05 13:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3750>

Commit(s) tested:
	d5a67c02901c0abe946546f2b3b1a3b67a876136

Author(s) (in the same order as the commits):
	Andre Vieria <andre.simoesdiasvieira@arm.com>

Subject:
	[ARM] Purecode compatible long branch veneer for M-profile targets with MOVW.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for d5a67c02901c0abe946546f2b3b1a3b67a876136>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-05 10:56 [binutils-gdb] [ARM] Change noread to purecode sergiodj+buildbot
@ 2016-07-05 12:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-05 12:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3749>

Commit(s) tested:
	f0728ee368f217f2473798ad7ccfe9feae4412ce

Author(s) (in the same order as the commits):
	Andre Vieria <andre.simoesdiasvieira@arm.com>

Subject:
	[ARM] Change noread to purecode.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f0728ee368f217f2473798ad7ccfe9feae4412ce>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-05  9:02 [binutils-gdb] babeltrace compilation regression sergiodj+buildbot
@ 2016-07-05 10:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-05 10:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3748>

Commit(s) tested:
	13cdc2afb7873547ec2910ba647fb4a68602252f

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	babeltrace compilation regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 13cdc2afb7873547ec2910ba647fb4a68602252f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 19:49 [binutils-gdb] Optimize memory_xfer_partial for remote sergiodj+buildbot
@ 2016-07-02  2:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-02  2:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3746>

Commit(s) tested:
	09c98b448f3d89cb9576e4e73991c2312939e0af

Author(s) (in the same order as the commits):
	Don Breazeal <donb@codesourcery.com>

Subject:
	Optimize memory_xfer_partial for remote

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 09c98b448f3d89cb9576e4e73991c2312939e0af>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 19:44 [binutils-gdb] [AArch64] Fix +nofp16 handling sergiodj+buildbot
@ 2016-07-02  1:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-02  1:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3745>

Commit(s) tested:
	93d8990cba700abdf9d2be06a5022e588d097fc8

Author(s) (in the same order as the commits):
	Szabolcs Nagy <szabolcs.nagy@arm.com>

Subject:
	[AArch64] Fix +nofp16 handling

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 93d8990cba700abdf9d2be06a5022e588d097fc8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 18:48 [binutils-gdb] Fake VFORK_DONE events when following only the parent after a vfork sergiodj+buildbot
@ 2016-07-02  0:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-02  0:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3744>

Commit(s) tested:
	2c5c2a3321706c28cbf1b85a970a2e32912eb0c8

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Fake VFORK_DONE events when following only the parent after a vfork.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2c5c2a3321706c28cbf1b85a970a2e32912eb0c8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 18:19 [binutils-gdb] Move fbsd_resume and related functions below fork following helper code sergiodj+buildbot
@ 2016-07-01 22:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 22:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3743>

Commit(s) tested:
	8607ea632c806235554aa2336cf01bf3758c1264

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Move fbsd_resume and related functions below fork following helper code.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8607ea632c806235554aa2336cf01bf3758c1264>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 17:17 [binutils-gdb] Honor detach-on-fork on FreeBSD sergiodj+buildbot
@ 2016-07-01 21:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 21:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3742>

Commit(s) tested:
	bb2a62e694953c099c41d49f59947d3d91cc7c27

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Honor detach-on-fork on FreeBSD.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bb2a62e694953c099c41d49f59947d3d91cc7c27>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 16:41 [binutils-gdb] Fix Thumb-2 BL detection sergiodj+buildbot
@ 2016-07-01 20:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 20:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3741>

Commit(s) tested:
	5e866f5aeeaf7514f5ca4f9eaba41594eac22e5b

Author(s) (in the same order as the commits):
	Thomas Preud'homme <thomas.preudhomme@arm.com>

Subject:
	Fix Thumb-2 BL detection

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5e866f5aeeaf7514f5ca4f9eaba41594eac22e5b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 15:50 [binutils-gdb] Set debug registers on all threads belonging to the current inferior sergiodj+buildbot
@ 2016-07-01 18:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 18:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3740>

Commit(s) tested:
	5077bfff905136e9d9a8fdf0886f6217887622ad

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Set debug registers on all threads belonging to the current inferior.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5077bfff905136e9d9a8fdf0886f6217887622ad>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 14:59 [binutils-gdb] Consolidate x86 debug register code for BSD native targets sergiodj+buildbot
@ 2016-07-01 17:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 17:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3739>

Commit(s) tested:
	a3405d124e1388b613a35af49f19f0cc1b8d959d

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Consolidate x86 debug register code for BSD native targets.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a3405d124e1388b613a35af49f19f0cc1b8d959d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 12:59 [binutils-gdb] Extend JIT-reader test and fix GDB problems that exposes sergiodj+buildbot
@ 2016-07-01 16:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 16:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3738>

Commit(s) tested:
	20aa2c606ef682889722b03b1d874befa84fbf53

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Extend JIT-reader test and fix GDB problems that exposes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 20aa2c606ef682889722b03b1d874befa84fbf53>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 12:41 [binutils-gdb] Fix failure to detach if process exits while detaching on Linux sergiodj+buildbot
@ 2016-07-01 14:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 14:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3737>

Commit(s) tested:
	ced2dffbf17bc661e959da1e39411d706ade9f77

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix failure to detach if process exits while detaching on Linux

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ced2dffbf17bc661e959da1e39411d706ade9f77>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 11:56 [binutils-gdb] Forget watchpoint locations when inferior exits or is killed/detached sergiodj+buildbot
@ 2016-07-01 13:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 13:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3736>

Commit(s) tested:
	630008884535a5b26828325e48e729034c110536

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Forget watchpoint locations when inferior exits or is killed/detached

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 630008884535a5b26828325e48e729034c110536>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01 10:53 [binutils-gdb] Factor out "Detaching from program" message printing sergiodj+buildbot
@ 2016-07-01 12:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 12:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3735>

Commit(s) tested:
	0f48b757071509040d800ff9f7c8726e5828bd1a

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Factor out "Detaching from program" message printing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 0f48b757071509040d800ff9f7c8726e5828bd1a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01  8:42 [binutils-gdb] x86: allow suffix-less movzw and 64-bit movzb sergiodj+buildbot
@ 2016-07-01 10:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01 10:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3734>

Commit(s) tested:
	c07315e0c610e0e3317b4c02266f81793df253d2

Author(s) (in the same order as the commits):
	Jan Beulich <jbeulich@novell.com>

Subject:
	x86: allow suffix-less movzw and 64-bit movzb

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c07315e0c610e0e3317b4c02266f81793df253d2>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01  7:49 [binutils-gdb] x86: remove stray instruction attributes sergiodj+buildbot
@ 2016-07-01  9:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01  9:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3733>

Commit(s) tested:
	9243100aef7486524f1a7f87bbd2cce1fe980b75

Author(s) (in the same order as the commits):
	Jan Beulich <jbeulich@novell.com>

Subject:
	x86: remove stray instruction attributes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9243100aef7486524f1a7f87bbd2cce1fe980b75>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-07-01  7:09 [binutils-gdb] x86/Intel: fix operand checking for MOVSD sergiodj+buildbot
@ 2016-07-01  8:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-07-01  8:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3732>

Commit(s) tested:
	8325cc6398187c12e0fe04a68a21e4eb5f44fa20

Author(s) (in the same order as the commits):
	Jan Beulich <jbeulich@novell.com>

Subject:
	x86/Intel: fix operand checking for MOVSD

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8325cc6398187c12e0fe04a68a21e4eb5f44fa20>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-30 11:43 [binutils-gdb] Fix gdbserver/MI testing regression sergiodj+buildbot
@ 2016-06-30 15:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-30 15:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3730>

Commit(s) tested:
	038d48680941f014349256aeb7bab14b3f01d58e

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdbserver/MI testing regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 038d48680941f014349256aeb7bab14b3f01d58e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-30 11:28 [binutils-gdb] Make testing gdb with FORCE_SEPARATE_MI_TTY=1 actually work sergiodj+buildbot
@ 2016-06-30 12:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-30 12:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3729>

Commit(s) tested:
	994e9c834d916af85e0fe0e8c3e18259aa4be389

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Make testing gdb with FORCE_SEPARATE_MI_TTY=1 actually work

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 994e9c834d916af85e0fe0e8c3e18259aa4be389>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-30 10:07 [binutils-gdb] [ARM][GAS] ARMv8.2 should enable ARMv8.1 NEON instructions sergiodj+buildbot
@ 2016-06-30 11:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-30 11:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3728>

Commit(s) tested:
	534dbe460e692a9befd9aca0eb0812db47459a30

Author(s) (in the same order as the commits):
	Matthew Wahab <matthew.wahab@arm.com>

Subject:
	[ARM][GAS] ARMv8.2 should enable ARMv8.1 NEON instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 534dbe460e692a9befd9aca0eb0812db47459a30>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-30  8:28 [binutils-gdb] Add support for simulating big-endian AArch64 binaries sergiodj+buildbot
@ 2016-06-30 10:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-30 10:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3727>

Commit(s) tested:
	c7be441465094e5ffce2f4205ea887676965d0be

Author(s) (in the same order as the commits):
	Jim Wilson <jim.wilson@linaro.org>

Subject:
	Add support for simulating big-endian AArch64 binaries.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c7be441465094e5ffce2f4205ea887676965d0be>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 18:30 [binutils-gdb] Add copyright header in gdb.base/return.c sergiodj+buildbot
@ 2016-06-29 21:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 21:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3726>

Commit(s) tested:
	e56534680d0df0e2ca313086b1758480c9374615

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Add copyright header in gdb.base/return.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e56534680d0df0e2ca313086b1758480c9374615>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 16:58 [binutils-gdb] Fix PR python/20129 - use of non-existing variable sergiodj+buildbot
@ 2016-06-29 20:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 20:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3725>

Commit(s) tested:
	803b47e5d4dc86b953aba0bc44865de287726dbe

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Fix PR python/20129 - use of non-existing variable

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 803b47e5d4dc86b953aba0bc44865de287726dbe>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 16:36 [binutils-gdb] PR gdb/17210 - fix possible memory leak in read_memory_robust sergiodj+buildbot
@ 2016-06-29 18:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 18:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3724>

Commit(s) tested:
	9d78f827e0da9ab6fda2d6ef2d59cebb805b411f

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	PR gdb/17210 - fix possible memory leak in read_memory_robust

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9d78f827e0da9ab6fda2d6ef2d59cebb805b411f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 14:59 [binutils-gdb] Initialize strtok_r's saveptr to NULL sergiodj+buildbot
@ 2016-06-29 17:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 17:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3723>

Commit(s) tested:
	9bf74fb27dc6e2a9679403d66fe919215e3c2a45

Author(s) (in the same order as the commits):
	Manish Goregaokar <manish@mozilla.com>

Subject:
	Initialize strtok_r's saveptr to NULL

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9bf74fb27dc6e2a9679403d66fe919215e3c2a45>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 14:20 [binutils-gdb] Set unknown_syscall differently on arm linux sergiodj+buildbot
@ 2016-06-29 16:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 16:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3722>

Commit(s) tested:
	28244707d9e4f35cab1f9069cee1d44b38be095f

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Set unknown_syscall differently on arm linux

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 28244707d9e4f35cab1f9069cee1d44b38be095f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 12:11 [binutils-gdb] sparc: make SPARC_OPCODE_ARCH_MAX part of its enum sergiodj+buildbot
@ 2016-06-29 14:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 14:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3721>

Commit(s) tested:
	042c94de565ae62640c064f1cb33d28484aeb9d3

Author(s) (in the same order as the commits):
	Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Subject:
	sparc: make SPARC_OPCODE_ARCH_MAX part of its enum

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 042c94de565ae62640c064f1cb33d28484aeb9d3>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 11:32 [binutils-gdb] Use strtok_r instead of strsep in rust_get_disr_info sergiodj+buildbot
@ 2016-06-29 13:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 13:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3720>

Commit(s) tested:
	a405c2281ad29b5c7f9f2a4d58b7cfef2b74ba99

Author(s) (in the same order as the commits):
	Manish Goregaokar <manish@mozilla.com>

Subject:
	Use strtok_r instead of strsep in rust_get_disr_info

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a405c2281ad29b5c7f9f2a4d58b7cfef2b74ba99>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-29 10:35 [binutils-gdb] Preserve all mapping symbols in ARM and AArch64 object files sergiodj+buildbot
@ 2016-06-29 11:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 11:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3719>

Commit(s) tested:
	d691934d08a4132506a19ac8d7565f1a0461a80a

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Preserve all mapping symbols in ARM and AArch64 object files.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for d691934d08a4132506a19ac8d7565f1a0461a80a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-28 18:34 [binutils-gdb] [TILEPro] Don't build gdb sergiodj+buildbot
@ 2016-06-29 10:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29 10:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3718>

Commit(s) tested:
	9abdce70ac7a3ee8f92285c314fa7728d3c1aa43

Author(s) (in the same order as the commits):
	Walter Lee <walt@tilera.com>

Subject:
	[TILEPro] Don't build gdb

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9abdce70ac7a3ee8f92285c314fa7728d3c1aa43>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-28 17:17 [binutils-gdb] [AArch64] Use int64_t for address offset sergiodj+buildbot
@ 2016-06-29  6:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-29  6:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3717>

Commit(s) tested:
	2ac09a5bbbff78d363ede2f038c31a9b1cb0887b

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[AArch64] Use int64_t for address offset

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2ac09a5bbbff78d363ede2f038c31a9b1cb0887b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-28 13:01 [binutils-gdb] Remove parameter sysret from linux_target_ops.get_syscall_trapinfo sergiodj+buildbot
@ 2016-06-28 18:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-28 18:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3710>

Commit(s) tested:
	4cc32bec04aadc5c070d0f4aee656313a4854c11

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove parameter sysret from linux_target_ops.get_syscall_trapinfo

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=eae525c8ef9226308212387fc6fbc59311575452>

*** 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: BINprelinkNOdebugSEPpieATTACH: copy libc-2.21.so to libc.so.6
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: unprelink break-interp-BINprelinkNOdebugSEPpieATTACH
PASS -> FAIL: gdb.base/coredump-filter.exp: save a corefile
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=7be0da6>

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-ppc64le-m64/xfails/master/xfail.table;hb=7be0da6>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-28 12:03 [binutils-gdb] Probe catch syscall support sergiodj+buildbot
@ 2016-06-28 15:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-28 15:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3709>

Commit(s) tested:
	a31d2f068fa1384c505b540ea595d2d97813ba5f

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Probe catch syscall support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e3898faa6f2caf2a40b39cddca5917f5840997c8>

*** 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 ***
============================
new FAIL: gdb.base/catch-syscall.exp: execve: syscall execve has returned
new FAIL: gdb.base/catch-syscall.exp: execve: continue to main
new FAIL: gdb.base/catch-syscall.exp: execve: continue until exit
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=7be0da6>

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-ppc64le-m64/xfails/master/xfail.table;hb=7be0da6>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-28 11:18 [binutils-gdb] Don't convert R_SPARC_32 to R_SPARC_RELATIVE if class is ELFCLASS64 sergiodj+buildbot
@ 2016-06-28 13:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-28 13:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3708>

Commit(s) tested:
	7160c10d6530b79ea45d435933b07765f610f54d

Author(s) (in the same order as the commits):
	James Clarke <jrtc27@jrtc27.com>

Subject:
	Don't convert R_SPARC_32 to R_SPARC_RELATIVE if class is ELFCLASS64.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=66d553b8a7854919b9a7b2459947f209e0c7135c>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 start
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 four
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 five
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 six
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 seven
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 eight
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 nine
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break1 ten
PASS -> FAIL: gdb.base/checkpoint-ns.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 1 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 8 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 9 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 9 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 10 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 1 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 1 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 2 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 3 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 4 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 6 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 1 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 2 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 3 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 4 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 5 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 6 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 7 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 8 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 9 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint-ns.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint-ns.exp: break2 10 one
PASS -> FAIL: gdb.base/checkpoint-ns.exp: outfile still open 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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=7be0da6>

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-ppc64le-m64/xfails/master/xfail.table;hb=7be0da6>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-28  0:55 [binutils-gdb] MIPS16: Add R_MIPS16_PC16_S1 branch relocation support sergiodj+buildbot
@ 2016-06-28  2:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-28  2:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3706>

Commit(s) tested:
	c9775dde32773c57d4eb5dfb4265eda9cb8adbe8

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS16: Add R_MIPS16_PC16_S1 branch relocation support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=dc629c165128066cb6a23341a8babc7d3d7760b9>

*** 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/callfuncs.exp: register contents after nested call dummies
PASS -> FAIL: gdb.base/callfuncs.exp: nested call dummies preserve register contents
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=7be0da6>

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-ppc64le-m64/xfails/master/xfail.table;hb=7be0da6>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-25 16:01 [binutils-gdb] xtensa: prototype xtensa_make_property_section in elf/xtensa.h sergiodj+buildbot
@ 2016-06-27  6:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-27  6:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3699>

Commit(s) tested:
	7c2c4aa12f4931fb79f94d787ef60e88960bb2a7

Author(s) (in the same order as the commits):
	Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Subject:
	xtensa: prototype xtensa_make_property_section in elf/xtensa.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9d0304ac11a4401611b773ce85fa8dea10b722bf>

*** Diff to previous build ***
============================
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 ***

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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-24 18:39 [binutils-gdb] Add elfcore_grok_freebsd_note to parse FreeBSD ELF core notes sergiodj+buildbot
@ 2016-06-26  3:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-26  3:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3688>

Commit(s) tested:
	aa1ed4a93a2eb0fb90d274c15288f3aad1791f60

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Add elfcore_grok_freebsd_note to parse FreeBSD ELF core notes.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6f13b7541d291b644a1f7525e07725d731318aef>

*** Diff to previous build ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first 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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-23  9:16 [binutils-gdb] [ARC] Misc minor edits/fixes sergiodj+buildbot
@ 2016-06-25  5:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-25  5:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3679>

Commit(s) tested:
	ce440d638d271d76cc491bd22dc34f6a5760140e

Author(s) (in the same order as the commits):
	Graham Markall <graham.markall@embecosm.com>

Subject:
	[ARC] Misc minor edits/fixes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=06c4a9a30e0e978cf2e4e5e10ef1cadb8fc210a4>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-22 11:03 [binutils-gdb] Send deleted watchpoint-scope output to all UIs sergiodj+buildbot
@ 2016-06-24  2:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-24  2:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3667>

Commit(s) tested:
	468afe6c5fc9c80b8c175f3f13702ffaa6308400

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Send deleted watchpoint-scope output to all UIs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=4ed47089f777e88fc2238d8d8fb268ab797d9d91>

*** Diff to previous build ***
============================
new FAIL: gdb.mi/mi-watch.exp: mi-mode=main: wp-type=hw: watchpoint trigger
new FAIL: gdb.mi/mi-watch.exp: mi-mode=separate: wp-type=hw: watchpoint trigger
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-21 19:51 [binutils-gdb] [DOC] Document support for running interpreters on separate UIs sergiodj+buildbot
@ 2016-06-23 21:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 21:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3665>

Commit(s) tested:
	86f78169c82095eced3a4d1b30f8e002ec841d79

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	[DOC] Document support for running interpreters on separate UIs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=712ae16f917d11f609d04ece7adcc797ca727547>

*** Diff to previous build ***
============================
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: detach
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: detach
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: detach
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: detach
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: detach
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: detach
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: detach
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
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-21 16:33 [binutils-gdb] Make main_ui be heap allocated sergiodj+buildbot
@ 2016-06-23 11:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-23 11:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3661>

Commit(s) tested:
	98d9f24ed15c5ca33bff06647d87b85e22e586d2

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Make main_ui be heap allocated

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a469081930697c53aca4478b1998a75a548dc728>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.gdb/observer.exp: run until breakpoint at captured_main
PASS -> FAIL: gdb.gdb/selftest.exp: run until breakpoint at captured_main
PASS -> FAIL: gdb.gdb/xfullpath.exp: run until breakpoint at captured_main
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-21 15:18 [binutils-gdb] Push thread->control.command_interp to the struct thread_fsm sergiodj+buildbot
@ 2016-06-23  7:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-23  7:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3659>

Commit(s) tested:
	8980e177bb62ec64875b335cf8733b41f3aae2fd

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Push thread->control.command_interp to the struct thread_fsm

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=510b7ffd623304266655ea0547f09d0938eb5594>

*** Diff to previous build ***
============================
new FAIL: gdb.opt/inline-cmds.exp: mi: step to inline call
new FAIL: gdb.opt/inline-cmds.exp: mi: step into inline call
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=6d4ac4c>

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-ppc64le-m64/xfails/master/xfail.table;hb=6d4ac4c>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-13 14:52 [binutils-gdb] [ARC] Generate DT_RELACOUNT sergiodj+buildbot
@ 2016-06-13 17:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-13 17:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3592>

Commit(s) tested:
	0f7f3789ca97ecaf0c4169c6d82e205f69fa0580

Author(s) (in the same order as the commits):
	Cupertino Miranda <cmiranda@synopsys.com>

Subject:
	[ARC] Generate DT_RELACOUNT.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=38aa0576996e03b183ae4df9c1d4b51bb6ac84ba>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.base/batch-preserve-term-settings.exp: batch run: exit shell
============================


*** 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-ppc64le-m64/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/Fedora-ppc64le-m64/xfails/master/xfail.table;hb=b49a91b>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-07 13:02 [binutils-gdb] PowerPC VLE sergiodj+buildbot
@ 2016-06-07 16:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-07 16:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3570>

Commit(s) tested:
	14b57c7c6a53c747a8819fed3da858eae4195a0e

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC VLE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d9b5b31a07a05dab5540de8931443a78b46aaefc>

*** Diff to previous build ***
============================
PASS -> FAIL: gdb.mi/mi-reverse.exp: Turn on process record
============================


*** 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-ppc64le-m64/xfails/master/xfail;hb=>

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-ppc64le-m64/xfails/master/xfail.table;hb=>




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-07 11:49 [binutils-gdb] Frame static link: Handle null pointer sergiodj+buildbot
@ 2016-06-07 13:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-07 13:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3569>

Commit(s) tested:
	2091da296fd563f62d856dcb5a049a63484ed65e

Author(s) (in the same order as the commits):
	Bernhard Heckel <bernhard.heckel@intel.com>

Subject:
	Frame static link: Handle null pointer.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2091da296fd563f62d856dcb5a049a63484ed65e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-07  9:09 [binutils-gdb] [ARM] Add command line option for RAS extension sergiodj+buildbot
@ 2016-06-07 11:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-07 11:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3567>

Commit(s) tested:
	4d1464f294405a064d84e3d4f15c1ceff3639add

Author(s) (in the same order as the commits):
	Matthew Wahab <matthew.wahab@arm.com>

Subject:
	[ARM] Add command line option for RAS extension.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4d1464f294405a064d84e3d4f15c1ceff3639add>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-06 21:21 [binutils-gdb] Add method/format information to =record-started sergiodj+buildbot
@ 2016-06-06 22:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-06 22:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3566>

Commit(s) tested:
	38b022b4452f996fb5a8598f80d850b594621bcf

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Add method/format information to =record-started

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 38b022b4452f996fb5a8598f80d850b594621bcf>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-06 18:25 [binutils-gdb] Support x86-64 TLS code sequences without PLT sergiodj+buildbot
@ 2016-06-06 20:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-06 20:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3565>

Commit(s) tested:
	e2cbcd9156d1606a9f2153aecd93a89fe6e29180

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Support x86-64 TLS code sequences without PLT

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e2cbcd9156d1606a9f2153aecd93a89fe6e29180>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-04 20:35 [binutils-gdb] Add z8k ld testsuite and fix range check in coff-z8k.c sergiodj+buildbot
@ 2016-06-04 21:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-04 21:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3563>

Commit(s) tested:
	2ac27cd3c16ad828f96991f8f7b83a4bc10cae6c

Author(s) (in the same order as the commits):
	Christian Groessler <chris@groessler.org>

Subject:
	Add z8k ld testsuite and fix range check in coff-z8k.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2ac27cd3c16ad828f96991f8f7b83a4bc10cae6c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-03 23:50 [binutils-gdb] Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu sergiodj+buildbot
@ 2016-06-04  1:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-04  1:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3562>

Commit(s) tested:
	026122a670440bc51266f8e013e5c5877c19b54e

Author(s) (in the same order as the commits):
	Peter Bergner <bergner@vnet.ibm.com>

Subject:
	Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 026122a670440bc51266f8e013e5c5877c19b54e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-03 23:15 [binutils-gdb] Handle indirect branches for AMD64 and Intel64 sergiodj+buildbot
@ 2016-06-04  0:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-04  0:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3561>

Commit(s) tested:
	07f5af7d3c635234284e7a0f7dd7a410b1628b8b

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Handle indirect branches for AMD64 and Intel64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 07f5af7d3c635234284e7a0f7dd7a410b1628b8b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-03 11:47 [binutils-gdb] Fix C++ build for Cygwin sergiodj+buildbot
@ 2016-06-03 13:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-03 13:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3560>

Commit(s) tested:
	0ae534d2cfef358bcde3166ce3a29faf85bc632a

Author(s) (in the same order as the commits):
	Jon Turney <jon.turney@dronecode.org.uk>

Subject:
	Fix C++ build for Cygwin

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 0ae534d2cfef358bcde3166ce3a29faf85bc632a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02 19:39 [binutils-gdb] Fix PR python/18984 sergiodj+buildbot
@ 2016-06-02 20:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02 20:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3559>

Commit(s) tested:
	1b40ec0559f4b24ccdf6b073610c526c4aa33c4d

Author(s) (in the same order as the commits):
	Tom Tromey <tom@tromey.com>

Subject:
	Fix PR python/18984

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1b40ec0559f4b24ccdf6b073610c526c4aa33c4d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02 16:28 [binutils-gdb] Add "arm_any" architecture type to allow -m option to various binutils to match any ARM architecture sergiodj+buildbot
@ 2016-06-02 18:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02 18:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3558>

Commit(s) tested:
	99914dfd71d74bc700bb6d15647895ac0c8cc8e1

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add "arm_any" architecture type to allow -m option to various binutils to match any ARM architecture.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 99914dfd71d74bc700bb6d15647895ac0c8cc8e1>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02 15:31 [binutils-gdb] Allow ARC Linux targets that do not use uclibc sergiodj+buildbot
@ 2016-06-02 16:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02 16:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3556>

Commit(s) tested:
	4ad0bb5f3a5b2d03079819cf419b174a762c2d52

Author(s) (in the same order as the commits):
	Vineet Gupta <Vineet.Gupta1@synopsys.com>

Subject:
	Allow ARC Linux targets that do not use uclibc.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4ad0bb5f3a5b2d03079819cf419b174a762c2d52>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02 14:30 [binutils-gdb] Replace data32 with data16 in comments sergiodj+buildbot
@ 2016-06-02 15:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02 15:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3555>

Commit(s) tested:
	3ddf1bdd423a127564d5d13cabde8863431576a3

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Replace data32 with data16 in comments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3ddf1bdd423a127564d5d13cabde8863431576a3>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02 13:17 [binutils-gdb] Add support for 48 and 64 bit ARC instructions sergiodj+buildbot
@ 2016-06-02 13:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02 13:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3554>

Commit(s) tested:
	4eb6f892502bad1ec4e1828d0140959bb004a3b6

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	Add support for 48 and 64 bit ARC instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4eb6f892502bad1ec4e1828d0140959bb004a3b6>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02  3:32 [binutils-gdb] Revert PR16467 change sergiodj+buildbot
@ 2016-06-02  4:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02  4:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3553>

Commit(s) tested:
	5b677558bc6c7b2477bb33c709e6017e68e7ae8c

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Revert PR16467 change

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5b677558bc6c7b2477bb33c709e6017e68e7ae8c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-02  1:33 [binutils-gdb] add more extern C sergiodj+buildbot
@ 2016-06-02  2:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-02  2:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3552>

Commit(s) tested:
	1fe0971e41a4097610862acabf54a896695fe834

Author(s) (in the same order as the commits):
	Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Subject:
	add more extern C

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1fe0971e41a4097610862acabf54a896695fe834>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01 16:03 [binutils-gdb] Add new Serbian translation for the bfd library sergiodj+buildbot
@ 2016-06-01 18:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01 18:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3551>

Commit(s) tested:
	885a10879eea3cf7ccbb324109a56f0bc391dcfa

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add new Serbian translation for the bfd library.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 885a10879eea3cf7ccbb324109a56f0bc391dcfa>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01 15:48 [binutils-gdb] gdb/remote-fileio.c: Eliminate custom SIGINT signal handler sergiodj+buildbot
@ 2016-06-01 17:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01 17:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3550>

Commit(s) tested:
	bb7c96deb1a14ef7e8b51d5339a65a8064515c78

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb/remote-fileio.c: Eliminate custom SIGINT signal handler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bb7c96deb1a14ef7e8b51d5339a65a8064515c78>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01 15:39 [binutils-gdb] Add support for some variants of the ARC nps400 rflt instruction sergiodj+buildbot
@ 2016-06-01 16:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01 16:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3549>

Commit(s) tested:
	315f180f2f0a59af561180e4ed9387f4c7bada78

Author(s) (in the same order as the commits):
	Graham Markall <graham.markall@embecosm.com>

Subject:
	Add support for some variants of the ARC nps400 rflt instruction.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 315f180f2f0a59af561180e4ed9387f4c7bada78>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01 10:56 [binutils-gdb] Add xmalloc_failed() function to common-utils.c in to avoid the need to link in libiberty's xmalloc code sergiodj+buildbot
@ 2016-06-01 11:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01 11:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3548>

Commit(s) tested:
	51403f74d96cc69f391fbd31389a9153a230b431

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add xmalloc_failed() function to common-utils.c in to avoid the need to link in libiberty's xmalloc code.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 51403f74d96cc69f391fbd31389a9153a230b431>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01  9:27 [binutils-gdb] infcmd, btrace: fix crash in 'finish' for tailcall-only frames sergiodj+buildbot
@ 2016-06-01 10:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01 10:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3547>

Commit(s) tested:
	e3b5daf9f735999259c5a8f68b422850c59897e5

Author(s) (in the same order as the commits):
	Markus Metzger <markus.t.metzger@intel.com>

Subject:
	infcmd, btrace: fix crash in 'finish' for tailcall-only frames

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e3b5daf9f735999259c5a8f68b422850c59897e5>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01  8:46 [binutils-gdb] Wake up interruptible_select in remote_fileio ctrl-c handler sergiodj+buildbot
@ 2016-06-01  9:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01  9:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3546>

Commit(s) tested:
	03d73f1fd9d89d89bdd021cad26693e4f6abc07a

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Wake up interruptible_select in remote_fileio ctrl-c handler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 03d73f1fd9d89d89bdd021cad26693e4f6abc07a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-06-01  3:22 [binutils-gdb] sh: make constant unsigned to avoid narrowing sergiodj+buildbot
@ 2016-06-01  4:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-06-01  4:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3545>

Commit(s) tested:
	a2b5fccc630a7cb7e1c241e5249bf6e8917d917d

Author(s) (in the same order as the commits):
	Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Subject:
	sh: make constant unsigned to avoid narrowing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a2b5fccc630a7cb7e1c241e5249bf6e8917d917d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-31 19:07 [binutils-gdb] [PR gdb/19893] Fix handling of synthetic C++ references sergiodj+buildbot
@ 2016-05-31 20:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-31 20:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3542>

Commit(s) tested:
	3326303bf5ae4c92f2fbbff387ce231a16c1c8bf

Author(s) (in the same order as the commits):
	Martin Galvan <martin.galvan@tallertechnologies.com>

Subject:
	[PR gdb/19893] Fix handling of synthetic C++ references

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3326303bf5ae4c92f2fbbff387ce231a16c1c8bf>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-31 11:20 [binutils-gdb] Don't needlessly clear xmemdup allocated memory sergiodj+buildbot
@ 2016-05-31 12:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-31 12:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3541>

Commit(s) tested:
	c12969f8b53659f0d70b5e049c49b97a96826a3f

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Don't needlessly clear xmemdup allocated memory.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c12969f8b53659f0d70b5e049c49b97a96826a3f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 17:39 [binutils-gdb] Add tests for 64bit values in trace-condition.exp sergiodj+buildbot
@ 2016-05-30 21:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 21:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3540>

Commit(s) tested:
	825c8ef28fc669bdf4eab64b43d7a64761fbd677

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Add tests for 64bit values in trace-condition.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 825c8ef28fc669bdf4eab64b43d7a64761fbd677>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 17:30 [binutils-gdb] Add variable length tests for emit_ref in trace-condition.exp sergiodj+buildbot
@ 2016-05-30 21:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 21:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3539>

Commit(s) tested:
	2320162a6219c664a8da2e2ff68b08d6f6c2ffcc

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Add variable length tests for emit_ref in trace-condition.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2320162a6219c664a8da2e2ff68b08d6f6c2ffcc>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 17:22 [binutils-gdb] Add emit_less_unsigned test in trace-condition.exp sergiodj+buildbot
@ 2016-05-30 19:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 19:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3538>

Commit(s) tested:
	a781823347ec9cd84e5ccc0bb8ddde48f8d302b6

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Add emit_less_unsigned test in trace-condition.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a781823347ec9cd84e5ccc0bb8ddde48f8d302b6>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 17:13 [binutils-gdb] Move trace conditions tests from ftrace.exp to trace-condition.exp sergiodj+buildbot
@ 2016-05-30 18:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 18:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3537>

Commit(s) tested:
	0d33646690c2e88624cd9646539d63d4144d03e8

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Move trace conditions tests from ftrace.exp to trace-condition.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 0d33646690c2e88624cd9646539d63d4144d03e8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 17:04 [binutils-gdb] Add counter-cases for trace-condition.exp tests sergiodj+buildbot
@ 2016-05-30 17:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 17:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3536>

Commit(s) tested:
	7faeb45ae36426b827c49457cf7186d73756cccc

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Add counter-cases for trace-condition.exp tests

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 7faeb45ae36426b827c49457cf7186d73756cccc>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 12:38 [binutils-gdb] PR 15231: import bare DW_TAG_lexical_block sergiodj+buildbot
@ 2016-05-30 14:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 14:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3535>

Commit(s) tested:
	e385593eef98ac92be57159e141f4b805dadbbb3

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	PR 15231: import bare DW_TAG_lexical_block

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e385593eef98ac92be57159e141f4b805dadbbb3>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-30 12:29 [binutils-gdb] Code cleanup: dwarf2_get_pc_bounds: -1/0/+1 -> enum sergiodj+buildbot
@ 2016-05-30 13:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-30 13:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3534>

Commit(s) tested:
	3a2b436ae9958a1029545c03201b7223ff33c150

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	Code cleanup: dwarf2_get_pc_bounds: -1/0/+1 -> enum

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3a2b436ae9958a1029545c03201b7223ff33c150>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-29 18:59 [binutils-gdb] NEWS: QCatchSyscalls: simplify sergiodj+buildbot
@ 2016-05-29 19:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-29 19:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3533>

Commit(s) tested:
	aab3c527d779a8e833a469203336afcc17512559

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	NEWS: QCatchSyscalls: simplify

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for aab3c527d779a8e833a469203336afcc17512559>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-29 16:52 [binutils-gdb] NEWS: Remove empty line sergiodj+buildbot
@ 2016-05-29 17:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-29 17:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3532>

Commit(s) tested:
	c64e0f6165537efda112a9744e588f4ecac8ca41

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	NEWS: Remove empty line.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c64e0f6165537efda112a9744e588f4ecac8ca41>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-29 15:10 [binutils-gdb] Add .noavx512XX directives to x86 assembler sergiodj+buildbot
@ 2016-05-29 16:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-29 16:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3531>

Commit(s) tested:
	144b71e2a88e02d0b54d4f09cc652f353b46e455

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add .noavx512XX directives to x86 assembler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 144b71e2a88e02d0b54d4f09cc652f353b46e455>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-28 13:19 [binutils-gdb] Add dependencies to configure rule sergiodj+buildbot
@ 2016-05-28 14:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28 14:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3529>

Commit(s) tested:
	0597bdc443005c70f0fd474279098ee17db882eb

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Add dependencies to configure rule

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 0597bdc443005c70f0fd474279098ee17db882eb>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-28 10:23 [binutils-gdb] MIPS/BFD: Correctly handle `bfd_reloc_outofrange' with branches sergiodj+buildbot
@ 2016-05-28 12:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28 12:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3528>

Commit(s) tested:
	99aefae6818be07a77739e0366121f2032916d9c

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Correctly handle `bfd_reloc_outofrange' with branches

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 99aefae6818be07a77739e0366121f2032916d9c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-28 10:13 [binutils-gdb] MIPS/BFD: Enable local R_MIPS_26 overflow detection sergiodj+buildbot
@ 2016-05-28 11:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28 11:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3527>

Commit(s) tested:
	7743482350c9c97484a429070db7d994a643a9eb

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Enable local R_MIPS_26 overflow detection

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 7743482350c9c97484a429070db7d994a643a9eb>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-28  2:08 [binutils-gdb] Return void from linker callbacks sergiodj+buildbot
@ 2016-05-28  8:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  8:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3526>

Commit(s) tested:
	1a72702bb30ec3f94627cfcae684823b413f20b9

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Return void from linker callbacks

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1a72702bb30ec3f94627cfcae684823b413f20b9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 22:07 [binutils-gdb] MIPS/BFD: Include the addend in JALX's target alignment verification sergiodj+buildbot
@ 2016-05-28  7:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  7:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3525>

Commit(s) tested:
	bc27bb0573a5e1ce1a6365fc06aeab9bd891fc3a

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Include the addend in JALX's target alignment verification

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bc27bb0573a5e1ce1a6365fc06aeab9bd891fc3a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 21:56 [binutils-gdb] MIPS/BFD: Fix section symbol name fetching in relocation sergiodj+buildbot
@ 2016-05-28  6:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  6:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3524>

Commit(s) tested:
	ceab86af75e9870ecf2da772a0d867ca12521a24

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Fix section symbol name fetching in relocation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ceab86af75e9870ecf2da772a0d867ca12521a24>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 17:19 [binutils-gdb] Update x86 CPU_XXX_FLAGS handling sergiodj+buildbot
@ 2016-05-28  4:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  4:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3523>

Commit(s) tested:
	1848e567343e9c50979453463f34e0a55ba892eb

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Update x86 CPU_XXX_FLAGS handling

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1848e567343e9c50979453463f34e0a55ba892eb>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 15:32 [binutils-gdb] Skip attach-many-short-lived-threads.exp on known-broken DejaGnu versions sergiodj+buildbot
@ 2016-05-28  2:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  2:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3522>

Commit(s) tested:
	744608cc854a365661e93d307aadf22ab6e6bd7c

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Skip attach-many-short-lived-threads.exp on known-broken DejaGnu versions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 744608cc854a365661e93d307aadf22ab6e6bd7c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 15:15 [binutils-gdb] Replace CpuAMD64/CpuIntel64 with AMD64/Intel64 sergiodj+buildbot
@ 2016-05-28  2:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  2:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3521>

Commit(s) tested:
	e92bae62606702c1c07e095789ffed103e0e34c5

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Replace CpuAMD64/CpuIntel64 with AMD64/Intel64

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e92bae62606702c1c07e095789ffed103e0e34c5>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 14:08 [binutils-gdb] Correct CpuMax in i386-opc.h sergiodj+buildbot
@ 2016-05-28  0:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-28  0:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3520>

Commit(s) tested:
	e89c5eaa7208f06e927a79facff0316f4e550f6f

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Correct CpuMax in i386-opc.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e89c5eaa7208f06e927a79facff0316f4e550f6f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 13:49 [binutils-gdb] Fix typo introduced during the most recent synchronization update sergiodj+buildbot
@ 2016-05-27 22:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-27 22:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3519>

Commit(s) tested:
	1690f1db1ac7a4e91d81ae968b8158af2b7ff91f

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix typo introduced during the most recent synchronization update.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1690f1db1ac7a4e91d81ae968b8158af2b7ff91f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-27 12:58 [binutils-gdb] gdb: Forward VALUE_LVAL when avoiding side effects for STRUCTOP_STRUCT sergiodj+buildbot
@ 2016-05-27 18:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-27 18:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3517>

Commit(s) tested:
	51415b9f309443261016ad1b63b9e350bbe3903d

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	gdb: Forward VALUE_LVAL when avoiding side effects for STRUCTOP_STRUCT

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=f8bb3c326b3f2fd31b08025c9848571ca9971d33>

*** 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/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
============================


*** Complete list of XFAILs for this builder ***
============================
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-26 11:56 [binutils-gdb] MIPS/BFD: Don't stop processing on `bfd_reloc_outofrange' sergiodj+buildbot
@ 2016-05-27 12:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-27 12:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3514>

Commit(s) tested:
	ed53407eec9eba3b55a3a00fb7eaa7eddbf01363

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Don't stop processing on `bfd_reloc_outofrange'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=60b6cd35c51fdc57c2ca5777db1e965ecda02b82>

*** 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: BINprelinkNOdebugSEPpieATTACH: copy libc-2.21.so to libc.so.6
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieATTACH: unprelink break-interp-BINprelinkNOdebugSEPpieATTACH
PASS -> FAIL: gdb.base/coredump-filter.exp: saving corefile for non-Shared-Anonymous: save corefile
PASS -> FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: load core
new FAIL: gdb.base/coredump-filter.exp: loading and testing corefile for non-Shared-Anonymous: loading /home/gdb-buildbot/fedora-ppc64le-1/fedora-ppc64le/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
PASS -> FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: load core
new FAIL: gdb.base/coredump-filter.exp: disassembling function main for non-Shared-Anonymous: no binary: loading /home/gdb-buildbot/fedora-ppc64le-1/fedora-ppc64le/build/gdb/testsuite/outputs/gdb.base/coredump-filter/non-shared-anon.gcore
============================


*** Complete list of XFAILs for this builder ***
============================
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-26 10:15 [binutils-gdb] metag: add extern C to header sergiodj+buildbot
@ 2016-05-27 10:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-27 10:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3513>

Commit(s) tested:
	94740f9c4b20ec88a5e33823a4da13d6da311a22

Author(s) (in the same order as the commits):
	Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Subject:
	metag: add extern C to header

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a2630ec4d73bca61b918c5119f0290bfeb9fffd5>

*** 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/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
============================


*** Complete list of XFAILs for this builder ***
============================
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-25 17:39 [binutils-gdb] Reimplement .no87/.nommx/.nosse/.noavx directives sergiodj+buildbot
@ 2016-05-26 20:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-26 20:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3507>

Commit(s) tested:
	293f5f65435c4d309cbf463e941a8bd5ae50c02d

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Reimplement .no87/.nommx/.nosse/.noavx directives

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=3930b329a76972844882649894356b35135a7e8d>

*** 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/checkpoint.exp: break1 start
PASS -> FAIL: gdb.base/checkpoint.exp: break1 two
PASS -> FAIL: gdb.base/checkpoint.exp: break1 three
PASS -> FAIL: gdb.base/checkpoint.exp: break1 four
PASS -> FAIL: gdb.base/checkpoint.exp: break1 five
PASS -> FAIL: gdb.base/checkpoint.exp: break1 six
PASS -> FAIL: gdb.base/checkpoint.exp: break1 seven
PASS -> FAIL: gdb.base/checkpoint.exp: break1 eight
PASS -> FAIL: gdb.base/checkpoint.exp: break1 nine
PASS -> FAIL: gdb.base/checkpoint.exp: break1 ten
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: break2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: break3 one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: break2 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
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
============================


*** Complete list of XFAILs for this builder ***
============================
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 2 (in the last 30 days)
  - last-racyness-detected: 2016-05-23 15:12:43 UTC
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
  - reported-by: GDB BuildBot Racy Detector (automatic)
  - number-of-racy-detections: 1 (in the last 30 days)
  - last-racyness-detected: 2016-05-17 22:44:00 UTC
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-13 18:25 [binutils-gdb] Don't convert GOTPCREL relocation against large section sergiodj+buildbot
@ 2016-05-13 20:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-13 20:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3432>

Commit(s) tested:
	2168b2688ae343a61c467450068503295a5e3deb

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Don't convert GOTPCREL relocation against large section

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a56226ded31f5683a63b1afd297d2a57eee32820>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-09 13:29 [binutils-gdb] [ARM/STM32L4XX] PR 20030: --fix-stm32l4xx-629360 fails to create vldm/vpop veneers for double-precision registers sergiodj+buildbot
@ 2016-05-09 19:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-09 19:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3411>

Commit(s) tested:
	9239bbd3a6bf901dba1c0170622c50c78f6d1096

Author(s) (in the same order as the commits):
	Christophe Monat <christophe.monat@st.com>

Subject:
	[ARM/STM32L4XX] PR 20030: --fix-stm32l4xx-629360 fails to create vldm/vpop veneers for double-precision registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c79e9f8fa243636fea2b439cc1add478c6b2689c>

*** Regressions found ***
============================
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: continue to breakpoint: marker2
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.reverse/recvmsg-reverse.exp: continue to breakpoint: marker2
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-03 12:30 [binutils-gdb] Fix gdb/python/python.c use-after-free sergiodj+buildbot
@ 2016-05-04  1:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-04  1:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3387>

Commit(s) tested:
	86f1abec458df24ea7d4a38a7b3e21861c5b9bd8

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdb/python/python.c use-after-free

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=59a2441c31de8ca6e476a19d024c6a22ecc5dcb8>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-05-03 11:27 [binutils-gdb] [AArch64] Also puts value in place for R_AARCH64_RELATIVE sergiodj+buildbot
@ 2016-05-03 21:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-05-03 21:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3385>

Commit(s) tested:
	1f56df9d0d5ad89806c24e71f296576d82344613

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[AArch64] Also puts value in place for R_AARCH64_RELATIVE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9c9de8a5bbf65a45944a1484ab39932ed731b019>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
PASS -> FAIL: gdb.base/info-os.exp: get process groups
PASS -> FAIL: gdb.base/info-os.exp: get threads
PASS -> FAIL: gdb.base/info-os.exp: get file descriptors
PASS -> FAIL: gdb.base/info-os.exp: get internet-domain sockets
PASS -> FAIL: gdb.base/info-os.exp: get shared-memory regions
PASS -> FAIL: gdb.base/info-os.exp: get semaphores
PASS -> FAIL: gdb.base/info-os.exp: get message queues
PASS -> FAIL: gdb.base/info-os.exp: continue
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/info-os.exp: get process groups
PASS -> FAIL: gdb.base/info-os.exp: get threads
PASS -> FAIL: gdb.base/info-os.exp: get file descriptors
PASS -> FAIL: gdb.base/info-os.exp: get internet-domain sockets
PASS -> FAIL: gdb.base/info-os.exp: get shared-memory regions
PASS -> FAIL: gdb.base/info-os.exp: get semaphores
PASS -> FAIL: gdb.base/info-os.exp: get message queues
PASS -> FAIL: gdb.base/info-os.exp: continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-29 15:45 [binutils-gdb] Pass GOT_RELOC to UNDEFINED_WEAK_RESOLVED_TO_ZERO sergiodj+buildbot
@ 2016-04-29 18:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-29 18:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3373>

Commit(s) tested:
	e62b9723fdfcf655ecbd46ea455567593e333f47

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Pass GOT_RELOC to UNDEFINED_WEAK_RESOLVED_TO_ZERO

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6deb3bcf82512ff42be70a55033f14b13701b7e8>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/info-os.exp: get process list
PASS -> FAIL: gdb.base/info-os.exp: get process groups
PASS -> FAIL: gdb.base/info-os.exp: get threads
PASS -> FAIL: gdb.base/info-os.exp: get file descriptors
PASS -> FAIL: gdb.base/info-os.exp: get internet-domain sockets
PASS -> FAIL: gdb.base/info-os.exp: get shared-memory regions
PASS -> FAIL: gdb.base/info-os.exp: get semaphores
PASS -> FAIL: gdb.base/info-os.exp: get message queues
PASS -> FAIL: gdb.base/info-os.exp: continue
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/info-os.exp: get process list
PASS -> FAIL: gdb.base/info-os.exp: get process groups
PASS -> FAIL: gdb.base/info-os.exp: get threads
PASS -> FAIL: gdb.base/info-os.exp: get file descriptors
PASS -> FAIL: gdb.base/info-os.exp: get internet-domain sockets
PASS -> FAIL: gdb.base/info-os.exp: get shared-memory regions
PASS -> FAIL: gdb.base/info-os.exp: get semaphores
PASS -> FAIL: gdb.base/info-os.exp: get message queues
PASS -> FAIL: gdb.base/info-os.exp: continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-21 16:36 [binutils-gdb] Switch gdb's TRY/CATCH to sjlj again sergiodj+buildbot
@ 2016-04-22 15:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-22 15:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3322>

Commit(s) tested:
	88c3cd8dcb60606a25a16ea11149219db00f847b

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Switch gdb's TRY/CATCH to sjlj again

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=448faaedcb285e24a822a920b77d54d4fc893119>

*** Regressions found ***
============================
new FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
new FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
new FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
new FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
new FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: disp *p_i
new FAIL: gdb.base/display.exp: p p_i = 0x0
new FAIL: gdb.base/display.exp: display bad address
new FAIL: gdb.base/display.exp: p p_i = &i
new FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off
new FAIL: gdb.base/display.exp: finish
new FAIL: gdb.base/display.exp: step
new FAIL: gdb.base/display.exp: cont
new FAIL: gdb.base/display.exp: printf "%d%d",i
new FAIL: gdb.base/display.exp: print/k j
new FAIL: gdb.base/display.exp: debug test output 1
new FAIL: gdb.base/display.exp: debug test output 1a
new FAIL: gdb.base/display.exp: debug test output 2
new FAIL: gdb.base/display.exp: debug test output 2a
new FAIL: gdb.base/display.exp: debug test output 3
new FAIL: gdb.base/display.exp: x/0 j
new FAIL: gdb.base/display.exp: ignored s
new FAIL: gdb.base/display.exp: print/a $pc
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pr11022.exp: watchpoint hit
new FAIL: gdb.base/pr11022.exp: watchpoint hit 2
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
new FAIL: gdb.base/recurse.exp: continue to recurse
new FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
new FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
new FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/value-double-free.exp: print empty
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: set static local watch
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
new FAIL: gdb.base/watchpoint.exp: watch $pc
new FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
new FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
new FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4
new FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
new FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
new FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler.
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame
new FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: reverse-finish from void_func trips breakpoint at entry
new FAIL: gdb.reverse/finish-reverse-bkpt.exp: no spurious proceed after breakpoint stop
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from int_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from short_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from char_func
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from void_func
new FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: reverse-next over call trips user breakpoint at function entry
new FAIL: gdb.reverse/next-reverse-bkpt-over-sr.exp: stopped at the right callee call
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
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: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
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
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-21 13:06 [binutils-gdb] Fix AIX gdb build with C++ compiler sergiodj+buildbot
@ 2016-04-22  9:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-22  9:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3320>

Commit(s) tested:
	71829b1a3f9b4825150747b138b5cfadf0c5fcba

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix AIX gdb build with C++ compiler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=104d7f8643b40408fc524f54f64a9ef9b1645a3e>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/help.exp: help data
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with no args
PASS -> FAIL: gdb.base/annota1.exp: annotation set at level 2
PASS -> FAIL: gdb.base/annota1.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.base/annota3.exp: breakpoint info
PASS -> FAIL: gdb.base/annota3.exp: run until main breakpoint
PASS -> FAIL: gdb.base/annota3.exp: go after array init line
PASS -> FAIL: gdb.base/annota3.exp: print array
PASS -> FAIL: gdb.base/annota3.exp: print non_existent_value
PASS -> FAIL: gdb.base/annota3.exp: breakpoint handle_USR1
PASS -> FAIL: gdb.base/annota3.exp: breakpoint printf
PASS -> FAIL: gdb.base/annota3.exp: continue to printf
PASS -> FAIL: gdb.base/annota3.exp: backtrace from shlibrary
PASS -> FAIL: gdb.base/annota3.exp: send SIGUSR1
PASS -> FAIL: gdb.base/annota3.exp: backtrace @ signal handler
PASS -> FAIL: gdb.base/annota3.exp: delete bp 1
PASS -> FAIL: gdb.base/annota3.exp: delete bp 2
PASS -> FAIL: gdb.base/annota3.exp: delete bp 3
PASS -> FAIL: gdb.base/annota3.exp: break at main
PASS -> FAIL: gdb.base/annota3.exp: set up display
PASS -> FAIL: gdb.base/annota3.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: break at value++
PASS -> FAIL: gdb.base/annota3.exp: ignore 5 4
PASS -> FAIL: gdb.base/annota3.exp: annotate ignore count change
PASS -> FAIL: gdb.base/annota3.exp: next to exit loop
PASS -> FAIL: gdb.base/annota3.exp: breakpoint ignore count
PASS -> FAIL: gdb.base/annota3.exp: signal sent
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/attach.exp: setting breakpoint at 22
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing on: attach and print
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing off: attach and print
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break1
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break2
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break3
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break4
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break5
new FAIL: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
new FAIL: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 54
new FAIL: gdb.base/commands.exp:
new FAIL: gdb.base/commands.exp: setting breakpoint at main
PASS -> FAIL: gdb.base/completion.exp: directory completion
PASS -> FAIL: gdb.base/completion.exp: directory completion 2
new FAIL: gdb.base/condbreak.exp:
new FAIL: gdb.base/default.exp:
new FAIL: gdb.base/define.exp:
new FAIL: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2f
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2g
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2h
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcb
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcc
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcd
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callce
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcf
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call4b
PASS -> FAIL: gdb.base/help.exp: help data
PASS -> FAIL: gdb.base/help.exp: help status
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new FAIL: gdb.base/maint.exp:
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
PASS -> FAIL: gdb.base/maint.exp: maint internal-error
new FAIL: gdb.base/multi-forks.exp: setting breakpoint at 40
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/nostdlib.exp: setting breakpoint at *_start
new FAIL: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/relocate.exp: static variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
new FAIL: gdb.base/shlib-call.exp: setting breakpoint at shr1
PASS -> FAIL: gdb.base/sigaltstack.exp: backtrace
PASS -> FAIL: gdb.base/sigbpt.exp: Verify that SIGSEGV occurs at the last STEPI insn
new FAIL: gdb.base/sigbpt.exp:
new FAIL: gdb.base/siginfo-addr.exp: setting breakpoint at pass
PASS -> FAIL: gdb.base/siginfo.exp: backtrace for nexti
new FAIL: gdb.base/signull.exp:
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/trace-commands.exp: depth resets on error part 1
new FAIL: gdb.base/unload.exp: setting breakpoint at shrfunc2
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:66
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 167
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
new FAIL: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.cp/annota2.exp: annotation set at level 2
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.cp/annota3.exp: first run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: print class
PASS -> FAIL: gdb.cp/annota3.exp: continue to exit
PASS -> FAIL: gdb.cp/annota3.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: break at main
PASS -> FAIL: gdb.cp/annota3.exp: second run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: set watch on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
PASS -> FAIL: gdb.cp/cp-relocate.exp: C++ functions have different addresses
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_symtab
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
PASS -> FAIL: gdb.fortran/exprs.exp: reject p _
PASS -> FAIL: gdb.fortran/types.exp: reject pt _
PASS -> FAIL: gdb.go/print.exp: reject p 1.1x
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ll
new FAIL: gdb.guile/scm-cmd.exp: Can't run to main
new FAIL: gdb.guile/scm-objfile.exp: Can't run to main
new FAIL: gdb.guile/scm-value.exp: Can't run to main
new FAIL: gdb.linespec/break-ask.exp: setting breakpoint at body_elsewhere
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at main
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1x
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1x
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> FAIL: gdb.python/python.exp: atexit handling
new FAIL: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
new FAIL: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
PASS -> FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
new FAIL: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
new FAIL: gdb.server/server-run.exp: setting breakpoint at main
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach
PASS -> FAIL: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 192
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 199
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 44
PASS -> FAIL: gdb.threads/schedlock.exp: stop all threads
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: all threads alive
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: stop all threads
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/staticthreads.exp:
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
PASS -> FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.trace/actions.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/deltrace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/infotrace.exp: setting tracepoints
new FAIL: gdb.trace/passcount.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/save-trace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/tracecmd.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/while-stepping.exp: Could not find gdb_c_test function
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-21  0:25 [binutils-gdb] Remove x86 gc_sweep_hook sergiodj+buildbot
@ 2016-04-21 23:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-21 23:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3317>

Commit(s) tested:
	e66cdd681f47dc51beaeee3d813f1c9cba27dedf

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Remove x86 gc_sweep_hook

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=17df31fa04a7ca23958c2a8c543d0c64fba1e722>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/help.exp: help support
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with no args
PASS -> FAIL: gdb.base/annota1.exp: annotation set at level 2
PASS -> FAIL: gdb.base/annota1.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.base/annota3.exp: breakpoint info
PASS -> FAIL: gdb.base/annota3.exp: run until main breakpoint
PASS -> FAIL: gdb.base/annota3.exp: go after array init line
PASS -> FAIL: gdb.base/annota3.exp: print array
PASS -> FAIL: gdb.base/annota3.exp: print non_existent_value
PASS -> FAIL: gdb.base/annota3.exp: breakpoint handle_USR1
PASS -> FAIL: gdb.base/annota3.exp: breakpoint printf
PASS -> FAIL: gdb.base/annota3.exp: continue to printf
PASS -> FAIL: gdb.base/annota3.exp: backtrace from shlibrary
PASS -> FAIL: gdb.base/annota3.exp: send SIGUSR1
PASS -> FAIL: gdb.base/annota3.exp: backtrace @ signal handler
PASS -> FAIL: gdb.base/annota3.exp: delete bp 1
PASS -> FAIL: gdb.base/annota3.exp: delete bp 2
PASS -> FAIL: gdb.base/annota3.exp: delete bp 3
PASS -> FAIL: gdb.base/annota3.exp: break at main
PASS -> FAIL: gdb.base/annota3.exp: set up display
PASS -> FAIL: gdb.base/annota3.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: break at value++
PASS -> FAIL: gdb.base/annota3.exp: ignore 5 4
PASS -> FAIL: gdb.base/annota3.exp: annotate ignore count change
PASS -> FAIL: gdb.base/annota3.exp: next to exit loop
PASS -> FAIL: gdb.base/annota3.exp: breakpoint ignore count
PASS -> FAIL: gdb.base/annota3.exp: signal sent
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/attach.exp: setting breakpoint at 22
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing on: attach and print
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing off: attach and print
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break1
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break2
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break3
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break4
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break5
new FAIL: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
new FAIL: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 54
new FAIL: gdb.base/commands.exp:
new FAIL: gdb.base/commands.exp: setting breakpoint at main
PASS -> FAIL: gdb.base/completion.exp: directory completion
PASS -> FAIL: gdb.base/completion.exp: directory completion 2
new FAIL: gdb.base/condbreak.exp:
new FAIL: gdb.base/default.exp:
new FAIL: gdb.base/define.exp:
new FAIL: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2f
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2g
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2h
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcb
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcc
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcd
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callce
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcf
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call4b
PASS -> FAIL: gdb.base/help.exp: help data
PASS -> FAIL: gdb.base/help.exp: help status
PASS -> FAIL: gdb.base/help.exp: help support
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new FAIL: gdb.base/maint.exp:
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
PASS -> FAIL: gdb.base/maint.exp: maint internal-error
new FAIL: gdb.base/multi-forks.exp: setting breakpoint at 40
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/nostdlib.exp: setting breakpoint at *_start
new FAIL: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/relocate.exp: static variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
new FAIL: gdb.base/shlib-call.exp: setting breakpoint at shr1
PASS -> FAIL: gdb.base/sigaltstack.exp: backtrace
PASS -> FAIL: gdb.base/sigbpt.exp: Verify that SIGSEGV occurs at the last STEPI insn
new FAIL: gdb.base/sigbpt.exp:
new FAIL: gdb.base/siginfo-addr.exp: setting breakpoint at pass
PASS -> FAIL: gdb.base/siginfo.exp: backtrace for nexti
new FAIL: gdb.base/signull.exp:
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/trace-commands.exp: depth resets on error part 1
new FAIL: gdb.base/unload.exp: setting breakpoint at shrfunc2
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:66
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 167
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
new FAIL: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.cp/annota2.exp: annotation set at level 2
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.cp/annota3.exp: first run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: print class
PASS -> FAIL: gdb.cp/annota3.exp: continue to exit
PASS -> FAIL: gdb.cp/annota3.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: break at main
PASS -> FAIL: gdb.cp/annota3.exp: second run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: set watch on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
PASS -> FAIL: gdb.cp/cp-relocate.exp: C++ functions have different addresses
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_symtab
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
PASS -> FAIL: gdb.fortran/exprs.exp: reject p _
PASS -> FAIL: gdb.fortran/types.exp: reject pt _
PASS -> FAIL: gdb.go/print.exp: reject p 1.1x
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ll
new FAIL: gdb.guile/scm-cmd.exp: Can't run to main
new FAIL: gdb.guile/scm-objfile.exp: Can't run to main
new FAIL: gdb.guile/scm-value.exp: Can't run to main
new FAIL: gdb.linespec/break-ask.exp: setting breakpoint at body_elsewhere
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at main
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1x
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1x
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> FAIL: gdb.python/python.exp: atexit handling
new FAIL: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
new FAIL: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
PASS -> FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
new FAIL: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
new FAIL: gdb.server/server-run.exp: setting breakpoint at main
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach
PASS -> FAIL: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 192
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 199
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 44
PASS -> FAIL: gdb.threads/schedlock.exp: stop all threads
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: all threads alive
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: stop all threads
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/staticthreads.exp:
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
PASS -> FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.trace/actions.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/deltrace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/infotrace.exp: setting tracepoints
new FAIL: gdb.trace/passcount.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/save-trace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/tracecmd.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/while-stepping.exp: Could not find gdb_c_test function
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-21  0:21 [binutils-gdb] Don't check relocations in excluded sections sergiodj+buildbot
@ 2016-04-21 19:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-21 19:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3316>

Commit(s) tested:
	5ce03cea78d4d8bf00e29e4dfa4952d53f3b1064

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Don't check relocations in excluded sections

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=7517243b862e560ded85680b2d2d2d29484a56ea>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/help.exp: help data
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with no args
PASS -> FAIL: gdb.base/annota1.exp: annotation set at level 2
PASS -> FAIL: gdb.base/annota1.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.base/annota3.exp: breakpoint info
PASS -> FAIL: gdb.base/annota3.exp: run until main breakpoint
PASS -> FAIL: gdb.base/annota3.exp: go after array init line
PASS -> FAIL: gdb.base/annota3.exp: print array
PASS -> FAIL: gdb.base/annota3.exp: print non_existent_value
PASS -> FAIL: gdb.base/annota3.exp: breakpoint handle_USR1
PASS -> FAIL: gdb.base/annota3.exp: breakpoint printf
PASS -> FAIL: gdb.base/annota3.exp: continue to printf
PASS -> FAIL: gdb.base/annota3.exp: backtrace from shlibrary
PASS -> FAIL: gdb.base/annota3.exp: send SIGUSR1
PASS -> FAIL: gdb.base/annota3.exp: backtrace @ signal handler
PASS -> FAIL: gdb.base/annota3.exp: delete bp 1
PASS -> FAIL: gdb.base/annota3.exp: delete bp 2
PASS -> FAIL: gdb.base/annota3.exp: delete bp 3
PASS -> FAIL: gdb.base/annota3.exp: break at main
PASS -> FAIL: gdb.base/annota3.exp: set up display
PASS -> FAIL: gdb.base/annota3.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: break at value++
PASS -> FAIL: gdb.base/annota3.exp: ignore 5 4
PASS -> FAIL: gdb.base/annota3.exp: annotate ignore count change
PASS -> FAIL: gdb.base/annota3.exp: next to exit loop
PASS -> FAIL: gdb.base/annota3.exp: breakpoint ignore count
PASS -> FAIL: gdb.base/annota3.exp: signal sent
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/attach.exp: setting breakpoint at 22
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing on: attach and print
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing off: attach and print
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break1
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break2
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break3
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break4
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break5
new FAIL: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
new FAIL: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 54
new FAIL: gdb.base/commands.exp:
new FAIL: gdb.base/commands.exp: setting breakpoint at main
PASS -> FAIL: gdb.base/completion.exp: directory completion
PASS -> FAIL: gdb.base/completion.exp: directory completion 2
new FAIL: gdb.base/condbreak.exp:
new FAIL: gdb.base/default.exp:
new FAIL: gdb.base/define.exp:
new FAIL: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2f
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2g
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2h
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcb
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcc
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcd
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callce
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcf
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call4b
PASS -> FAIL: gdb.base/help.exp: help data
PASS -> FAIL: gdb.base/help.exp: help status
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new FAIL: gdb.base/maint.exp:
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
PASS -> FAIL: gdb.base/maint.exp: maint internal-error
new FAIL: gdb.base/multi-forks.exp: setting breakpoint at 40
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/nostdlib.exp: setting breakpoint at *_start
new FAIL: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/relocate.exp: static variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
new FAIL: gdb.base/shlib-call.exp: setting breakpoint at shr1
PASS -> FAIL: gdb.base/sigaltstack.exp: backtrace
PASS -> FAIL: gdb.base/sigbpt.exp: Verify that SIGSEGV occurs at the last STEPI insn
new FAIL: gdb.base/sigbpt.exp:
new FAIL: gdb.base/siginfo-addr.exp: setting breakpoint at pass
PASS -> FAIL: gdb.base/siginfo.exp: backtrace for nexti
new FAIL: gdb.base/signull.exp:
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/trace-commands.exp: depth resets on error part 1
new FAIL: gdb.base/unload.exp: setting breakpoint at shrfunc2
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:66
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 167
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
new FAIL: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.cp/annota2.exp: annotation set at level 2
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.cp/annota3.exp: first run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: print class
PASS -> FAIL: gdb.cp/annota3.exp: continue to exit
PASS -> FAIL: gdb.cp/annota3.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: break at main
PASS -> FAIL: gdb.cp/annota3.exp: second run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: set watch on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
PASS -> FAIL: gdb.cp/cp-relocate.exp: C++ functions have different addresses
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_symtab
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
PASS -> FAIL: gdb.fortran/exprs.exp: reject p _
PASS -> FAIL: gdb.fortran/types.exp: reject pt _
PASS -> FAIL: gdb.go/print.exp: reject p 1.1x
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ll
new FAIL: gdb.guile/scm-cmd.exp: Can't run to main
new FAIL: gdb.guile/scm-objfile.exp: Can't run to main
new FAIL: gdb.guile/scm-value.exp: Can't run to main
new FAIL: gdb.linespec/break-ask.exp: setting breakpoint at body_elsewhere
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at main
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1x
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1x
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> FAIL: gdb.python/python.exp: atexit handling
new FAIL: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
new FAIL: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
PASS -> FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
new FAIL: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
new FAIL: gdb.server/server-run.exp: setting breakpoint at main
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach
PASS -> FAIL: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 192
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 199
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 44
PASS -> FAIL: gdb.threads/schedlock.exp: stop all threads
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: all threads alive
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: stop all threads
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/staticthreads.exp:
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
PASS -> FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.trace/actions.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/deltrace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/infotrace.exp: setting tracepoints
new FAIL: gdb.trace/passcount.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/save-trace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/tracecmd.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/while-stepping.exp: Could not find gdb_c_test function
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-20 22:27 [binutils-gdb] Build GDB as a C++ program by default sergiodj+buildbot
@ 2016-04-21 16:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-21 16:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3315>

Commit(s) tested:
	a23585089d7ba710b238d3d1ab3d34320afa48d0

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Build GDB as a C++ program by default

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=29880cda7819f173ff37057d0ce0e97da7b5bb4b>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with no args
PASS -> FAIL: gdb.base/annota1.exp: annotation set at level 2
PASS -> FAIL: gdb.base/annota1.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.base/annota3.exp: breakpoint info
PASS -> FAIL: gdb.base/annota3.exp: run until main breakpoint
PASS -> FAIL: gdb.base/annota3.exp: go after array init line
PASS -> FAIL: gdb.base/annota3.exp: print array
PASS -> FAIL: gdb.base/annota3.exp: print non_existent_value
PASS -> FAIL: gdb.base/annota3.exp: breakpoint handle_USR1
PASS -> FAIL: gdb.base/annota3.exp: breakpoint printf
PASS -> FAIL: gdb.base/annota3.exp: continue to printf
PASS -> FAIL: gdb.base/annota3.exp: backtrace from shlibrary
PASS -> FAIL: gdb.base/annota3.exp: send SIGUSR1
PASS -> FAIL: gdb.base/annota3.exp: backtrace @ signal handler
PASS -> FAIL: gdb.base/annota3.exp: delete bp 1
PASS -> FAIL: gdb.base/annota3.exp: delete bp 2
PASS -> FAIL: gdb.base/annota3.exp: delete bp 3
PASS -> FAIL: gdb.base/annota3.exp: break at main
PASS -> FAIL: gdb.base/annota3.exp: set up display
PASS -> FAIL: gdb.base/annota3.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: break at value++
PASS -> FAIL: gdb.base/annota3.exp: ignore 5 4
PASS -> FAIL: gdb.base/annota3.exp: annotate ignore count change
PASS -> FAIL: gdb.base/annota3.exp: next to exit loop
PASS -> FAIL: gdb.base/annota3.exp: breakpoint ignore count
PASS -> FAIL: gdb.base/annota3.exp: signal sent
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/attach.exp: setting breakpoint at 22
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing on: attach and print
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing off: attach and print
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break1
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break2
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break3
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break4
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break5
new FAIL: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
new FAIL: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 54
new FAIL: gdb.base/commands.exp:
new FAIL: gdb.base/commands.exp: setting breakpoint at main
PASS -> FAIL: gdb.base/completion.exp: directory completion
PASS -> FAIL: gdb.base/completion.exp: directory completion 2
new FAIL: gdb.base/condbreak.exp:
new FAIL: gdb.base/default.exp:
new FAIL: gdb.base/define.exp:
new FAIL: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2f
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2g
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2h
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcb
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcc
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcd
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callce
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcf
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call4b
PASS -> FAIL: gdb.base/help.exp: help status
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new FAIL: gdb.base/maint.exp:
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
PASS -> FAIL: gdb.base/maint.exp: maint internal-error
new FAIL: gdb.base/multi-forks.exp: setting breakpoint at 40
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/nostdlib.exp: setting breakpoint at *_start
new FAIL: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/relocate.exp: static variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
new FAIL: gdb.base/shlib-call.exp: setting breakpoint at shr1
PASS -> FAIL: gdb.base/sigaltstack.exp: backtrace
PASS -> FAIL: gdb.base/sigbpt.exp: Verify that SIGSEGV occurs at the last STEPI insn
new FAIL: gdb.base/sigbpt.exp:
new FAIL: gdb.base/siginfo-addr.exp: setting breakpoint at pass
PASS -> FAIL: gdb.base/siginfo.exp: backtrace for nexti
new FAIL: gdb.base/signull.exp:
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/trace-commands.exp: depth resets on error part 1
new FAIL: gdb.base/unload.exp: setting breakpoint at shrfunc2
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:66
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 167
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
new FAIL: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.cp/annota2.exp: annotation set at level 2
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.cp/annota3.exp: first run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: print class
PASS -> FAIL: gdb.cp/annota3.exp: continue to exit
PASS -> FAIL: gdb.cp/annota3.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: break at main
PASS -> FAIL: gdb.cp/annota3.exp: second run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: set watch on a.x
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
PASS -> FAIL: gdb.cp/cp-relocate.exp: C++ functions have different addresses
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_symtab
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
PASS -> FAIL: gdb.fortran/exprs.exp: reject p _
PASS -> FAIL: gdb.fortran/types.exp: reject pt _
PASS -> FAIL: gdb.go/print.exp: reject p 1.1x
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ll
new FAIL: gdb.guile/scm-cmd.exp: Can't run to main
new FAIL: gdb.guile/scm-objfile.exp: Can't run to main
new FAIL: gdb.guile/scm-value.exp: Can't run to main
new FAIL: gdb.linespec/break-ask.exp: setting breakpoint at body_elsewhere
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at main
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1x
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1x
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> FAIL: gdb.python/python.exp: atexit handling
new FAIL: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
new FAIL: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
PASS -> FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
new FAIL: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
new FAIL: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
new FAIL: gdb.server/server-run.exp: setting breakpoint at main
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
new FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach
new FAIL: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 192
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 199
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 44
PASS -> FAIL: gdb.threads/schedlock.exp: stop all threads
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: all threads alive
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: stop all threads
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/staticthreads.exp:
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
PASS -> FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.trace/actions.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/deltrace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/infotrace.exp: setting tracepoints
new FAIL: gdb.trace/passcount.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/save-trace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/tracecmd.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/while-stepping.exp: Could not find gdb_c_test function
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/a2-run.exp: run "a2-run" with no args
PASS -> FAIL: gdb.base/annota1.exp: annotation set at level 2
PASS -> FAIL: gdb.base/annota1.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.base/annota3.exp: breakpoint info
PASS -> FAIL: gdb.base/annota3.exp: run until main breakpoint
PASS -> FAIL: gdb.base/annota3.exp: go after array init line
PASS -> FAIL: gdb.base/annota3.exp: print array
PASS -> FAIL: gdb.base/annota3.exp: print non_existent_value
PASS -> FAIL: gdb.base/annota3.exp: breakpoint handle_USR1
PASS -> FAIL: gdb.base/annota3.exp: breakpoint printf
PASS -> FAIL: gdb.base/annota3.exp: continue to printf
PASS -> FAIL: gdb.base/annota3.exp: backtrace from shlibrary
PASS -> FAIL: gdb.base/annota3.exp: send SIGUSR1
PASS -> FAIL: gdb.base/annota3.exp: backtrace @ signal handler
PASS -> FAIL: gdb.base/annota3.exp: delete bp 1
PASS -> FAIL: gdb.base/annota3.exp: delete bp 2
PASS -> FAIL: gdb.base/annota3.exp: delete bp 3
PASS -> FAIL: gdb.base/annota3.exp: break at main
PASS -> FAIL: gdb.base/annota3.exp: set up display
PASS -> FAIL: gdb.base/annota3.exp: re-run
PASS -> FAIL: gdb.base/annota3.exp: break at value++
PASS -> FAIL: gdb.base/annota3.exp: ignore 5 4
PASS -> FAIL: gdb.base/annota3.exp: annotate ignore count change
PASS -> FAIL: gdb.base/annota3.exp: next to exit loop
PASS -> FAIL: gdb.base/annota3.exp: breakpoint ignore count
PASS -> FAIL: gdb.base/annota3.exp: signal sent
new FAIL: gdb.base/argv0-symlink.exp: argv[0] should be available on this target
new FAIL: gdb.base/attach.exp: setting breakpoint at 22
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing on: attach and print
PASS -> FAIL: gdb.base/attach-wait-input.exp: editing off: attach and print
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break1
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break2
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break3
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break4
new FAIL: gdb.base/bitfields2.exp: setting breakpoint at break5
new FAIL: gdb.base/bitfields.exp: setting breakpoint at break5
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugINpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieNO: reach-libfunc: setting breakpoint at libfunc
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-main: setting breakpoint at main
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugSEPpieYES: reach-libfunc: setting breakpoint at libfunc
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: setting breakpoint at t_small_values
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at add
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at sum10
new FAIL: gdb.base/callfuncs.exp: noproto: setting breakpoint at t_small_values
new FAIL: gdb.base/catch-signal.exp: setting breakpoint at main
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint.exp: setting breakpoint at 54
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 57
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 49
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 59
new FAIL: gdb.base/checkpoint-ns.exp: setting breakpoint at 54
new FAIL: gdb.base/commands.exp:
new FAIL: gdb.base/commands.exp: setting breakpoint at main
PASS -> FAIL: gdb.base/completion.exp: directory completion
PASS -> FAIL: gdb.base/completion.exp: directory completion 2
new FAIL: gdb.base/condbreak.exp:
new FAIL: gdb.base/default.exp:
new FAIL: gdb.base/define.exp:
new FAIL: gdb.base/dmsym.exp: setting breakpoint at dmsym_main.c:31
new FAIL: gdb.base/ena-dis-br.exp:
PASS -> FAIL: gdb.base/freebpcmd.exp: send breakpoint commands
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built absolute
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built relative
PASS -> FAIL: gdb.base/fullname.exp: set breakpoint by full path after loading symbols - built other
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call0e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call1e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2d
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2e
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2f
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2g
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call2h
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcb
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcc
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcd
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callce
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callcf
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc1b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at callc2b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3b
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call3c
new FAIL: gdb.base/funcargs.exp: setting breakpoint at call4b
PASS -> FAIL: gdb.base/help.exp: help status
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list main'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp2_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp3_2'
PASS -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp2'
KFAIL -> FAIL: gdb.base/macscp.exp: info macro WHERE after `list macscp_4_2_from_macscp3'
new FAIL: gdb.base/maint.exp:
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: header
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: psymtabs
PASS -> FAIL: gdb.base/maint.exp: maint print objfiles: symtabs
PASS -> FAIL: gdb.base/maint.exp: maint internal-error
new FAIL: gdb.base/multi-forks.exp: setting breakpoint at 40
PASS -> FAIL: gdb.base/multi-forks.exp: run to exit 2
new FAIL: gdb.base/nostdlib.exp: setting breakpoint at *_start
new FAIL: gdb.base/pending.exp:
PASS -> FAIL: gdb.base/relocate.exp: static variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: global variables have different addresses
PASS -> FAIL: gdb.base/relocate.exp: functions have different addresses
new FAIL: gdb.base/shlib-call.exp: setting breakpoint at shr1
PASS -> FAIL: gdb.base/sigaltstack.exp: backtrace
PASS -> FAIL: gdb.base/sigbpt.exp: Verify that SIGSEGV occurs at the last STEPI insn
new FAIL: gdb.base/sigbpt.exp:
new FAIL: gdb.base/siginfo-addr.exp: setting breakpoint at pass
PASS -> FAIL: gdb.base/siginfo.exp: backtrace for nexti
new FAIL: gdb.base/signull.exp:
PASS -> FAIL: gdb.base/sigstep.exp: validate backtrace: backtrace for nexti
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=off: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: step on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: next on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/sigstep.exp: displaced=on: continue on breakpoint, to handler entry: backtrace
PASS -> FAIL: gdb.base/trace-commands.exp: depth resets on error part 1
new FAIL: gdb.base/unload.exp: setting breakpoint at shrfunc2
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:66
new FAIL: gdb.base/unload.exp: setting breakpoint at unload.c:93
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: setting breakpoint at 167
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 151
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 159
new FAIL: gdb.base/watchpoint.exp: no-hw: setting breakpoint at 167
new FAIL: gdb.base/watchpoint-solib.exp:
PASS -> FAIL: gdb.cp/annota2.exp: annotation set at level 2
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: annotation set at level 3
PASS -> FAIL: gdb.cp/annota3.exp: first run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: print class
PASS -> FAIL: gdb.cp/annota3.exp: continue to exit
PASS -> FAIL: gdb.cp/annota3.exp: delete bps
PASS -> FAIL: gdb.cp/annota3.exp: break at main
PASS -> FAIL: gdb.cp/annota3.exp: second run until main breakpoint
PASS -> FAIL: gdb.cp/annota3.exp: set watch on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::b
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at 'GDB<int>::c
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator ==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::operator==
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<char>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::harder
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at "int GDB<char>::even_harder<int>
PASS -> FAIL: gdb.cp/cmpd-minsyms.exp: setting breakpoint at GDB<int>::simple
PASS -> FAIL: gdb.cp/cp-relocate.exp: C++ functions have different addresses
new FAIL: gdb.cp/no-dmgl-verbose.exp: setting breakpoint at 'f
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *Outer::Inner::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi1::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi2::Innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::innermost::foo
new FAIL: gdb.cp/nsalias.exp: setting breakpoint at *oi3::Innermost::foo
PASS -> FAIL: gdb.cp/overload-const.exp: setting breakpoint at myclass::func
new FAIL: gdb.cp/parse-lang.exp: setting breakpoint at marker
new FAIL: gdb.cp/re-set-overloaded.exp: setting breakpoint at main
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_lang
PASS -> FAIL: gdb.dwarf2/dw2-case-insensitive.exp: setting breakpoint at fuNC_symtab
new FAIL: gdb.dwarf2/dw2-objfile-overlap.exp: setting breakpoint at *outer_before
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: continue to func01
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access integer member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access array member
PASS -> FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: throw error, dereference ptr to access pointer member
PASS -> FAIL: gdb.fortran/exprs.exp: reject p _
PASS -> FAIL: gdb.fortran/types.exp: reject pt _
PASS -> FAIL: gdb.go/print.exp: reject p 1.1x
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.go/print.exp: reject p 1.1ll
new FAIL: gdb.guile/scm-cmd.exp: Can't run to main
new FAIL: gdb.guile/scm-objfile.exp: Can't run to main
new FAIL: gdb.guile/scm-value.exp: Can't run to main
new FAIL: gdb.linespec/break-ask.exp: setting breakpoint at body_elsewhere
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at main
new FAIL: gdb.multi/watchpoint-multi.exp: setting breakpoint at marker_exit
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1x
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.objc/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1x
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ff
PASS -> FAIL: gdb.pascal/print.exp: reject p 1.1ll
PASS -> FAIL: gdb.python/py-completion.exp: list all completions of 'complete completelimit2 c'
PASS -> FAIL: gdb.python/python.exp: atexit handling
new FAIL: gdb.reverse/consecutive-precsave.exp: setting breakpoint at foo
new FAIL: gdb.reverse/consecutive-reverse.exp: setting breakpoint at foo
new FAIL: gdb.server/ext-restart.exp: setting breakpoint at main
new FAIL: gdb.server/ext-run.exp: setting breakpoint at main
PASS -> FAIL: gdb.server/ext-run.exp: get process list
new FAIL: gdb.server/ext-wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare binary file
PASS -> FAIL: gdb.server/file-transfer.exp: compare intermediate text file
PASS -> FAIL: gdb.server/file-transfer.exp: compare text file
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.server/no-thread-db.exp: setting breakpoint at no-thread-db.c:26
new FAIL: gdb.server/server-kill.exp: setting breakpoint at server-kill.c:29
new FAIL: gdb.server/server-run.exp: setting breakpoint at main
new FAIL: gdb.server/wrapper.exp: setting breakpoint at marker
PASS -> FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach
PASS -> FAIL: gdb.threads/attach-into-signal.exp: threaded: attach
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 192
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at 199
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/linux-dp.exp: manager thread found
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=off: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr1: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr2: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/multiple-step-overs.exp: displaced=on: signal thr3: setting breakpoint at sigusr1_handler
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 44
PASS -> FAIL: gdb.threads/schedlock.exp: stop all threads
new FAIL: gdb.threads/schedlock.exp: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: all threads alive
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: stop all threads
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=continue: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=step: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=0: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
PASS -> FAIL: gdb.threads/schedlock.exp: schedlock=off: cmd=next: call_function=1: other threads ran - unlocked
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=step: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=step: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=0: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/schedlock.exp: schedlock=on: cmd=next: call_function=1: setting breakpoint at 80 if arg != 0
new FAIL: gdb.threads/staticthreads.exp:
new FAIL: gdb.threads/threxit-hop-specific.exp: setting breakpoint at 47
PASS -> FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.trace/actions.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/deltrace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/infotrace.exp: setting tracepoints
new FAIL: gdb.trace/passcount.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/save-trace.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/tracecmd.exp: Could not find gdb_recursion_test function
new FAIL: gdb.trace/while-stepping.exp: Could not find gdb_c_test function
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-19 17:34 [binutils-gdb] symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile sergiodj+buildbot
@ 2016-04-20  2:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-20  2:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3298>

Commit(s) tested:
	d04c1a59f3b6ae23f16988961cd74b561ed6f8d6

Author(s) (in the same order as the commits):
	Doug Evans <xdje42@gmail.com>

Subject:
	symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b4f611dab4b78185f194945c1b2d7dc73cab6112>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-16  2:42 [binutils-gdb] gdb/ada-exp.y: Remap yydefred sergiodj+buildbot
@ 2016-04-17 12:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-17 12:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3284>

Commit(s) tested:
	58484447ed8e1c64bbd73f224c8c9452a7420beb

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb/ada-exp.y: Remap yydefred

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=406a1e6f8c7d33c9a45fa6852fbdcb3d52916728>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-13  8:11 [binutils-gdb] Do target_terminal_ours in query & friends instead of in all callers sergiodj+buildbot
@ 2016-04-14 17:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-14 17:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3251>

Commit(s) tested:
	651ce16aa7c2bd5e9f634e91e73790dc3e01a5c0

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Do target_terminal_ours in query & friends instead of in all callers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=987085af0de14ab83244d57990781237085faca2>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the first fork
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-12 20:57 [binutils-gdb] Use target_terminal_ours_for_output in warning/internal_error sergiodj+buildbot
@ 2016-04-14 14:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-14 14:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3249>

Commit(s) tested:
	c5ac15402a894e87a118526a066880f596b3c78d

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Use target_terminal_ours_for_output in warning/internal_error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=42d7db95b1f77942e15894e947227f614b1d27ff>

*** Regressions found ***
============================
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: check waitpid record
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.reverse/waitpid-reverse.exp: check waitpid record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-12 10:00 [binutils-gdb] Add support for .extCondCode, .extCoreRegister and .extAuxRegister sergiodj+buildbot
@ 2016-04-13  0:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-13  0:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3226>

Commit(s) tested:
	f36e33dac1a97cca8f79ca8b20cf0fb05f1e25f4

Author(s) (in the same order as the commits):
	Claudiu Zissulescu <claziss@synopsys.com>

Subject:
	Add support for .extCondCode, .extCoreRegister and .extAuxRegister.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=3a12c187ac8f4e42b3059058fdaf2de48e743ff6>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 two
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 7: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1
FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-07 19:12 [binutils-gdb] Fix gdb.compile/compile.exp shlib regression sergiodj+buildbot
@ 2016-04-08  3:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-08  3:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3211>

Commit(s) tested:
	9553661a5f8fb5f82846a04a02b7db8476d986e0

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdb.compile/compile.exp shlib regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=573d2d784b5503e5f149e3cba06a85752a0a719c>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-07 18:15 [binutils-gdb] arc/nps400: Add new instructions sergiodj+buildbot
@ 2016-04-08  2:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-08  2:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3210>

Commit(s) tested:
	a42a4f8400ee232ceed5ecceb61873195984f1d9

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	arc/nps400: Add new instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=ce4dcbdf94517d96e2d2cf64e0584df8ed844de2>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-07 17:52 [binutils-gdb] gas/arc: Handle multiple arc_opcode chains for same mnemonic sergiodj+buildbot
@ 2016-04-08  0:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-08  0:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3209>

Commit(s) tested:
	1328504b287b2c284419d989e0d05e7d6d3ffa59

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	gas/arc: Handle multiple arc_opcode chains for same mnemonic

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d9bd946dde04cc9eab29a5b5cedcc382bc522e05>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/ext-restart.exp: set remote exec-file
PASS -> FAIL: gdb.server/ext-restart.exp: monitor exit
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/ext-restart.exp: set remote exec-file
PASS -> FAIL: gdb.server/ext-restart.exp: monitor exit
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-07 17:21 [binutils-gdb] Fix gdb.reverse/finish-reverse-bkpt.exp sergiodj+buildbot
@ 2016-04-07 22:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-07 22:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3208>

Commit(s) tested:
	c8064e7e9b4d7d9cc29a613af899a7739df60be6

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Fix gdb.reverse/finish-reverse-bkpt.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b51187f8a02c0171564940e5e93a871b19cfb2b1>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: connect and print pc
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: print pc again
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: connect and print pc
PASS -> FAIL: gdb.server/connect-stopped-target.exp: non-stop=off: print pc again
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-07 16:30 [binutils-gdb] Make breakpoint handling in record-full idempotent sergiodj+buildbot
@ 2016-04-07 19:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-07 19:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3206>

Commit(s) tested:
	e390720bdc6ddee752992537259d18d1ae8d2eb1

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Make breakpoint handling in record-full idempotent

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=cb5c708d9b5009c6293ac29b92cd1709236b588e>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-06 21:44 [binutils-gdb] Optimized-out pointer: New test for error handling sergiodj+buildbot
@ 2016-04-07  1:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-07  1:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3203>

Commit(s) tested:
	b16f8a3b1ecce592fe331a5b1ce6632951350e9c

Author(s) (in the same order as the commits):
	Don Breazeal <donb@codesourcery.com>

Subject:
	Optimized-out pointer: New test for error handling

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=0765e96a41fc49d41bda06a85b502a9c946d52fd>

*** Regressions found ***
============================
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: create varobj for ptr
new FAIL: gdb.dwarf2/dw2-opt-structptr.exp: mi: get children of var1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-06 21:04 [binutils-gdb] Fix gdb.threads/dlopen-libpthread.exp crash sergiodj+buildbot
@ 2016-04-07  0:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-07  0:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3202>

Commit(s) tested:
	c2f901dfb6cb5ae2845a48503df1fe0065085f83

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix gdb.threads/dlopen-libpthread.exp crash

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=5d14c3c10a4475f7a35a7df9254f284de4216ef1>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-06  7:08 [binutils-gdb] testsuite: Update py-mi-objfile to expect console format print sergiodj+buildbot
@ 2016-04-06 12:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-06 12:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3196>

Commit(s) tested:
	ac17fda08bf2a75ba561a919f05df95ff07959de

Author(s) (in the same order as the commits):
	Catalin Udma <catalin.udma@freescale.com>

Subject:
	testsuite: Update py-mi-objfile to expect console format print

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=254158b63b9979334bd3601d8bc6f7419d6e2da8>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-06  1:00 [binutils-gdb] Fix IPA detection in ftrace-insn-reloc.exp sergiodj+buildbot
@ 2016-04-06 10:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-06 10:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3195>

Commit(s) tested:
	03a8c4dfc295fdebf4dac7a5ee91592e69b404a6

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix IPA detection in ftrace-insn-reloc.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=81e2580e73657952e17fee8008b76029a8dbaa26>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-05 22:02 [binutils-gdb] arc/nps400: Add additional instructions sergiodj+buildbot
@ 2016-04-06  9:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-06  9:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3194>

Commit(s) tested:
	820f03ffe027367f275e9debb5f3f3376820ab37

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	arc/nps400: Add additional instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=4d64e03f0258ec9dfb0b89ac7cc98f680c3af540>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-05 19:25 [binutils-gdb] Make ftrace tests work with remote targets sergiodj+buildbot
@ 2016-04-06  7:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-06  7:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3193>

Commit(s) tested:
	6e774b13c3b81ac2599812adf058796948ce7e95

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Make ftrace tests work with remote targets

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=236c96b68ab69fa2257fe92bed63ddb536ab7242>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> FAIL: gdb.server/wrapper.exp: print d
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: target remote
PASS -> FAIL: gdb.server/connect-without-multi-process.exp: multiprocess=off: continue to main
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.server/wrapper.exp: print d
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-04-05 18:35 [binutils-gdb] Improve gdb_remote_download, remove gdb_download sergiodj+buildbot
@ 2016-04-06  5:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-04-06  5:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3192>

Commit(s) tested:
	7817ea46148df2931cf00d17aeedb844b6e4e4db

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Improve gdb_remote_download, remove gdb_download

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=1d16ce28a7d62f63e055aae2b4ca102d832dca58>

*** Regressions found ***
============================
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 0: p libvar
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: target remote
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: continue
PASS -> FAIL: gdb.server/solib-list.exp: non-stop 1: p libvar
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 8: attach
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-31 12:58 [binutils-gdb] python: Use console format for output of gdb.execute command sergiodj+buildbot
@ 2016-03-31 16:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-31 16:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3163>

Commit(s) tested:
	e7ea3ec7c623be0b9be1eaf4929794652a84be11

Author(s) (in the same order as the commits):
	Catalin Udma <catalin.udma@freescale.com>

Subject:
	python: Use console format for output of gdb.execute command

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6cdae1431aef26122fdcf129f73dff3e9315f798>

*** Regressions found ***
============================
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-mi-objfile.exp: file-exec-and-symbols operation
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-31 11:40 [binutils-gdb] enable -Wwrite-strings for gas sergiodj+buildbot
@ 2016-03-31 13:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-31 13:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3161>

Commit(s) tested:
	6757cf57697d30c73f4e3f314883ad2d8999eac6

Author(s) (in the same order as the commits):
	Trevor Saunders <tbsaunde+binutils@tbsaunde.org>

Subject:
	enable -Wwrite-strings for gas

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=afc59b77cae1d82dd3bd984457779343155a3d58>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-30 14:16 [binutils-gdb] Fix a seg-fault in the AVR linker sergiodj+buildbot
@ 2016-03-30 15:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-30 15:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3152>

Commit(s) tested:
	024ea11b48d2270cd0b3b2b6fbe9e42c9fd232e0

Author(s) (in the same order as the commits):
	Senthil Kumar Selvaraj <senthil_kumar.selvaraj@atmel.com>

Subject:
	Fix a seg-fault in the AVR linker.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=98b19e01407919f05f6d55d55b1afce4f8c248a3>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-29 21:56 [binutils-gdb] gdbserver/s390: Switch on tracepoint support sergiodj+buildbot
@ 2016-03-29 23:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-29 23:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3144>

Commit(s) tested:
	a4105d04e19efdf89d0fa56b62675d7d7ee82a9b

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdbserver/s390: Switch on tracepoint support.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b609c8e5c7bc875d12b88edda5e097757dd76bbe>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-29 10:50 [binutils-gdb] Tidy up AArch64 simulator code sergiodj+buildbot
@ 2016-03-29 13:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-29 13:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3139>

Commit(s) tested:
	ef0d8ffc45aa32ed1e49051a344fa6c8cff583f4

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Tidy up AArch64 simulator code.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b3f3320e4a880a6e513e810e19acfb2b9cfcb6d5>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 4: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 5: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=off: cond_bp_target=1: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 1: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 1: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: attach
FAIL: gdb.threads/process-dies-while-handling-bp.exp: non_stop=on: cond_bp_target=0: no threads left
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: attach
FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 2: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 2: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: attach
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 3: attach <<2>>
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: attach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 6: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one
FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
FAIL: gdb.threads/attach-into-signal.exp: threaded: attempt 4: attach <<2>>
FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attempt 5: attach <<2>>
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-21 11:29 [binutils-gdb] ARM process record: median instructions sergiodj+buildbot
@ 2016-03-21 16:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-21 16:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3113>

Commit(s) tested:
	c55978a67a2e23999c3359a13bb807b665fcb33e

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	ARM process record: median instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=cd22781fc455e77806766d73353b9fce0c0c33a0>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-18 15:45 [binutils-gdb] Make sparc_software_single_step static sergiodj+buildbot
@ 2016-03-19  8:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-19  8:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3107>

Commit(s) tested:
	9c3f22346dd632201807c0718d5281ed1eea329f

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Make sparc_software_single_step static

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b5c62377b543d003472c96e11963201a60f53d10>

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/display.exp: info disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
PASS -> FAIL: gdb.base/display.exp: watch off
PASS -> FAIL: gdb.base/display.exp: finish
PASS -> FAIL: gdb.base/display.exp: step
PASS -> FAIL: gdb.base/display.exp: cont
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/jit-so.exp: one_jit_test-1: info function jit_function
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/value-double-free.exp: print empty
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
PASS -> FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo4
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed
PASS -> FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
PASS -> FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
PASS -> FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5
PASS -> FAIL: gdb.cp/annota3.exp: watch triggered on a.x
PASS -> FAIL: gdb.cp/annota3.exp: annotate-quit
PASS -> FAIL: gdb.cp/gdb2495.exp: info breakpoints
new FAIL: gdb.cp/gdb2495.exp:
PASS -> FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag
PASS -> FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off..
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
PASS -> FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit
PASS -> FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func
PASS -> FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data
PASS -> FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-17  9:19 [binutils-gdb] linux-record: Fix bad fall-through for pipe/pipe2 sergiodj+buildbot
@ 2016-03-17 22:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-17 22:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3090>

Commit(s) tested:
	afdab9165435e17169b4984eeb29ea751319aa74

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	linux-record: Fix bad fall-through for pipe/pipe2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for afdab9165435e17169b4984eeb29ea751319aa74>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-16 22:29 [binutils-gdb] PR remote/19496, interrupted syscall in forking-threads-plus-bkpt sergiodj+buildbot
@ 2016-03-17 16:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-17 16:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3089>

Commit(s) tested:
	7868401b7b63d851eea5de3b780591238d579bd1

Author(s) (in the same order as the commits):
	Don Breazeal <donb@codesourcery.com>

Subject:
	PR remote/19496, interrupted syscall in forking-threads-plus-bkpt

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 7868401b7b63d851eea5de3b780591238d579bd1>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-16 17:48 [binutils-gdb] xml-tdesc.c (tdesc_start_enum): Fix c++ build sergiodj+buildbot
@ 2016-03-17 11:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-17 11:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3088>

Commit(s) tested:
	bfeeb14b8468ab3f60d719f2cde697d1b537eba8

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	xml-tdesc.c (tdesc_start_enum): Fix c++ build.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bfeeb14b8468ab3f60d719f2cde697d1b537eba8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-16 16:29 [binutils-gdb] [ARM] Support ARMv8.2 FP16 simd instructions sergiodj+buildbot
@ 2016-03-16 19:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-16 19:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3085>

Commit(s) tested:
	cc9333013723880949a1e07a3e04bdbc1a3c3032

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[ARM] Support ARMv8.2 FP16 simd instructions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for cc9333013723880949a1e07a3e04bdbc1a3c3032>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-14 20:28 [binutils-gdb] Regenerate bfd-in2.h sergiodj+buildbot
@ 2016-03-15 11:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-15 11:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3068>

Commit(s) tested:
	fbe48798204180aa11c55e5377c1e23700b9c280

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Regenerate bfd-in2.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9204f19729aa4a6e4abad23a239831eb2e7c4f2b>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-14 16:56 [binutils-gdb] gdb.base/default.exp: Add missing $_as_string to "show convenience" test sergiodj+buildbot
@ 2016-03-14 18:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-14 18:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3067>

Commit(s) tested:
	fa4ff313317d6234bbd818b09332e7d85349a56a

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	gdb.base/default.exp: Add missing $_as_string to "show convenience" test

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=cf2bf98e7c2554991988f914c448e9f7b0ddaa16>

*** Regressions found ***
============================
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-10 22:34 [binutils-gdb] Add $_as_string convenience function sergiodj+buildbot
@ 2016-03-11 15:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-11 15:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3062>

Commit(s) tested:
	f2f3ccb9f81255fd1b4f877600f39979c2d7ece5

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Add $_as_string convenience function

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=3e4f16ffd93090c560abf60660ea2c7493b6dd80>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-10 15:43 [binutils-gdb] Mark the i370 target as obsolete sergiodj+buildbot
@ 2016-03-11 13:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-11 13:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3061>

Commit(s) tested:
	3ed4ff97cbbeeb2658286769ac9e8a6a35390f26

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Mark the i370 target as obsolete.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=aa7feee50633bb7e2ba32c5ffd187fe4c46de43a>

*** Regressions found ***
============================
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 21:46 [binutils-gdb] gdb: fix doc string of target_can_use_hardware_watchpoint sergiodj+buildbot
@ 2016-03-11  9:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-11  9:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3059>

Commit(s) tested:
	2343b78a778af9fe496c521bd49ba027cb8b48ae

Author(s) (in the same order as the commits):
	Jose E. Marchesi <jose.marchesi@oracle.com>

Subject:
	gdb: fix doc string of target_can_use_hardware_watchpoint.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=745b83405c7f69746672e7a6c5ea0eeb57999e49>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 21:19 [binutils-gdb] Command line input handling TLC sergiodj+buildbot
@ 2016-03-11  8:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-11  8:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3058>

Commit(s) tested:
	b69d38afdea34e4fecab5ea47ffe1e594e0b6233

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Command line input handling TLC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d4f2347d44e387c2fc6e23750041f30195c268ea>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 5 two
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 5 two
PASS -> FAIL: gdb.base/checkpoint-ns.exp: verify lines 5 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 20:47 [binutils-gdb] Use struct buffer in gdb_readline_no_editing sergiodj+buildbot
@ 2016-03-11  3:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-11  3:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3055>

Commit(s) tested:
	7a3bde34bc61af108556c74b661533dadddcb178

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Use struct buffer in gdb_readline_no_editing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=730ef89ed9e5c3b53860a2d6d07f3b4beac69d17>

*** Regressions found ***
============================
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 20:27 [binutils-gdb] Update prompt_for_continue comments sergiodj+buildbot
@ 2016-03-10 23:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-10 23:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3053>

Commit(s) tested:
	720d2e96b424bb4bb1f7021f86763ff3df078e2b

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Update prompt_for_continue comments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c177947db006bd3e8297104cdd1fc316a899352b>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 20:15 [binutils-gdb] Eliminate async_annotation_suffix sergiodj+buildbot
@ 2016-03-10 21:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-10 21:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3052>

Commit(s) tested:
	608ff013aae02e3ac4687691db57bbcb8984fe18

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Eliminate async_annotation_suffix

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9632122ebd5f047728ca8234ed11e6497d856aac>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 18:28 [binutils-gdb] gdb: Add gen_return_address for powerpc sergiodj+buildbot
@ 2016-03-10  4:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-10  4:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3042>

Commit(s) tested:
	a67914defbe57290c714975d7c1ccefa787fd635

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb: Add gen_return_address for powerpc.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c07a519bb878969bc2100cd5cfb0d3244f285307>

*** Regressions found ***
============================
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
new FAIL: gdb.base/foll-vfork.exp: exit: vfork relations in info inferiors: vfork relation no longer appears in info inferiors (timeout)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 18:02 [binutils-gdb] gdb: Add ax_pseudo_register_collect for powerpc sergiodj+buildbot
@ 2016-03-10  3:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-10  3:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3041>

Commit(s) tested:
	2a2fa07bd121498a492f84312a36629383fc9445

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb: Add ax_pseudo_register_collect for powerpc.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a7695b542e0ca0210b86129d0bf84a1d619e4cd9>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 16:41 [binutils-gdb] S390: Recognize special jumps in prologue parser sergiodj+buildbot
@ 2016-03-10  1:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-10  1:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3040>

Commit(s) tested:
	bc0e3f49c84055034cae31bba169100d107b28f4

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	S390: Recognize special jumps in prologue parser

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=446aea0dca759277a64ff428dcba0885950b3eb1>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 16:30 [binutils-gdb] S390: Add use of unavailable-stack frame ID sergiodj+buildbot
@ 2016-03-09 23:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09 23:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3039>

Commit(s) tested:
	6d53bec88f4c1576f74e918400aa2ccac2d129db

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	S390: Add use of unavailable-stack frame ID

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8689688cc751dc98513cde25ec24120ea2c0b41a>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 16:19 [binutils-gdb] Avoid spaces in osabi names sergiodj+buildbot
@ 2016-03-09 22:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09 22:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3038>

Commit(s) tested:
	f7990f1690e9ef0471634c871c790f6cf706866d

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Avoid spaces in osabi names

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e6f8ec6e69a627b7a30a549cac95e55559bc3d0f>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09 16:08 [binutils-gdb] [FR-V] Handle FR300 sergiodj+buildbot
@ 2016-03-09 20:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09 20:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3037>

Commit(s) tested:
	087ccc6a4f8c754a4f4d31810839a631dbeabe0d

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	[FR-V] Handle FR300

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c838c1e986a836d5b6afbe191a7dcfb141864ed9>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09  6:37 [binutils-gdb] Allow zero length archive elements sergiodj+buildbot
@ 2016-03-09 15:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09 15:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3034>

Commit(s) tested:
	03ee85837ec2e10f7b67c417b17ab3ffa97a98d2

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Allow zero length archive elements

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8dc4edb3c08f138dcbdcf647790447d928ca4722>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09  4:57 [binutils-gdb] Don't create dynamic sections when relocatable sergiodj+buildbot
@ 2016-03-09 11:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09 11:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3033>

Commit(s) tested:
	9c1d7a087682074d585253ad38719ec2363eb2b7

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Don't create dynamic sections when relocatable

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=49a53f58cb150c183ee4872b7263126bad2f932c>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09  3:39 [binutils-gdb] [CRIS] Don't internal error if forced big endian sergiodj+buildbot
@ 2016-03-09  9:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09  9:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3032>

Commit(s) tested:
	114d7832b0e07452277d748c81d8bc0c5675a1bc

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	[CRIS] Don't internal error if forced big endian

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=95366258f0d538a1df1e9396fbd080fc416b98a5>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09  4:23 [binutils-gdb] Fix floating conversion buffer overrun when host/target format matches sergiodj+buildbot
@ 2016-03-09  7:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09  7:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3031>

Commit(s) tested:
	d7a87b5e4343467db23b70e73b156c9cc79c50ea

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix floating conversion buffer overrun when host/target format matches

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=de0a821e2b4cd2ca58862ffef91202db126ba0b3>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-09  3:19 [binutils-gdb] Assert that a floating type's length is at least as long as its format sergiodj+buildbot
@ 2016-03-09  5:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-09  5:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3030>

Commit(s) tested:
	b79497cb1cdc9b3053e5f0387bf3056c08c9bbdd

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Assert that a floating type's length is at least as long as its format

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=809c04cd333bbe91594d6505a6dc8b14e5889f3e>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-07 17:40 [binutils-gdb] Allow zero length archive elements sergiodj+buildbot
@ 2016-03-08 13:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-08 13:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3025>

Commit(s) tested:
	4fc874242f8f1bf17cf6e65b159dd804e793e6cd

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Allow zero length archive elements.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=2f8d14e4770fe1c433c34de2187af6c788a20153>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-07 16:52 [binutils-gdb] Fix "set architecture mips:10000" crash sergiodj+buildbot
@ 2016-03-07 20:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-07 20:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3024>

Commit(s) tested:
	e6c2f47b45315ba13f25fb57e51389d0c5ed0701

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix "set architecture mips:10000" crash

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=88e26014e863e7f3c274f1031468f0a39b1c596b>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-07 15:51 [binutils-gdb] [AArch64] Create .got section if _GLOBAL_OFFSET_TABLE_ referenced sergiodj+buildbot
@ 2016-03-07 18:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-07 18:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3023>

Commit(s) tested:
	18f822a08fd5cb8fed8b0b318e7945545c255081

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[AArch64] Create .got section if _GLOBAL_OFFSET_TABLE_ referenced

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=757c5395398b4177b004992a6c5f2d9aa28b5d74>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-06  1:57 [binutils-gdb] Improve analysis of racy testcases sergiodj+buildbot
@ 2016-03-06 22:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-06 22:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3020>

Commit(s) tested:
	fb6a751f5f1fe7912e84dd90d06395c357da47c2

Author(s) (in the same order as the commits):
	Sergio Durigan Junior <sergiodj@redhat.com>

Subject:
	Improve analysis of racy testcases

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b342cce4a138c79556f758f7fd61f09afce9f06a>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-04 16:41 [binutils-gdb] Add missing ChangeLog entries for commit 82838 sergiodj+buildbot
@ 2016-03-05 12:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-05 12:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3018>

Commit(s) tested:
	3f1f41f55f2fa5d390e57074477b6407302c8c46

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add missing ChangeLog entries for commit 82838

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=5e5ce3ed6603d155e8a72442edf8628743896228>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-04 14:50 [binutils-gdb] Treat common symbol in executable as definition sergiodj+buildbot
@ 2016-03-04 16:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-04 16:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3014>

Commit(s) tested:
	07492f668d2173da7a2bda3707ff0985e0f460b6

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Treat common symbol in executable as definition

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=5228490019d694715ce710145e1819b581333d67>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 21:12 [binutils-gdb] Add new plugin hooks to support querying section alignment and size sergiodj+buildbot
@ 2016-03-04 11:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-04 11:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3012>

Commit(s) tested:
	82838bd626b10f1a82b0de29728c26f4458ec514

Author(s) (in the same order as the commits):
	Cary Coutant <ccoutant@gmail.com>

Subject:
	Add new plugin hooks to support querying section alignment and size.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=305081626c63c191ceb3239b746c1e3272cb4fd3>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 21:03 [binutils-gdb] get_symbols() plugin API tweak to support --start-lib/--end-lib sergiodj+buildbot
@ 2016-03-04  4:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-04  4:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3011>

Commit(s) tested:
	95ecdfbfcbf508919652a0254ee2b8c6572a949e

Author(s) (in the same order as the commits):
	Evgenii Stepanov <eugenis@google.com>

Subject:
	get_symbols() plugin API tweak to support --start-lib/--end-lib.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=1e292f608cb4f77bd0373d382a2ce2f76da2a1d0>

*** Regressions found ***
============================
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 19:03 [binutils-gdb] gdb.base/skip.exp: Use with_test_prefix sergiodj+buildbot
@ 2016-03-04  2:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-04  2:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3010>

Commit(s) tested:
	bdf7e23048b68171c01f2498cc46670a76e68c4d

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	gdb.base/skip.exp: Use with_test_prefix.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=886ea70b8aca4f5278ce2dce2d0814651f64b836>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 15:34 [binutils-gdb] Fix bugs in the simulation of the AArch64's ADDP, FADDP, LD1, CCMP and CCMP instructions sergiodj+buildbot
@ 2016-03-04  1:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-04  1:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3009>

Commit(s) tested:
	57aa17424380be1c3e362a5601071f1f3a6f74f6

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix bugs in the simulation of the AArch64's ADDP, FADDP, LD1, CCMP and CCMP instructions.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=3c373285fdd1195a6fbf158058b097027ab9e7d3>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 10:20 [binutils-gdb] Reformat gdb.base/step-over-syscall.exp sergiodj+buildbot
@ 2016-03-03 19:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03 19:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3006>

Commit(s) tested:
	ea50786226737509a8f4c2734699a5fc15cc63c4

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Reformat gdb.base/step-over-syscall.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=25b68b81f30cc297079af46d2c8b5a66e95f5819>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 10:09 [binutils-gdb] Rename disp-step-syscall.exp to step-over-syscall.exp sergiodj+buildbot
@ 2016-03-03 17:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03 17:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3005>

Commit(s) tested:
	8fc8cbdaf698ed042d859d5749cff66937bbb57c

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Rename disp-step-syscall.exp to step-over-syscall.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e11540a5aa2e662fd75dd464aaf88be1763f8f77>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03 10:00 [binutils-gdb] Step over fork/vfork syscall insn in gdbserver sergiodj+buildbot
@ 2016-03-03 16:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03 16:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3004>

Commit(s) tested:
	92fa70b0bd8690d979357ebcdb501a9e4aa42ea6

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Step over fork/vfork syscall insn in gdbserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=ac0f350594147febf17c126a6500808b66cd9753>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03  9:51 [binutils-gdb] Step over syscalll insn with disp-step on and off sergiodj+buildbot
@ 2016-03-03 14:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03 14:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3003>

Commit(s) tested:
	e197ad3c87723a2bdf383d38fcfa3eaa4fa1ba12

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Step over syscalll insn with disp-step on and off

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d51c8efe558620a97145a0a63654a557912e234e>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-03  9:42 [binutils-gdb] Refactor gdb.base/disp-step-syscall.exp for general step over test sergiodj+buildbot
@ 2016-03-03 12:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03 12:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/3002>

Commit(s) tested:
	0b47da9f176aa73854f1ff8ae00afda11a4f338a

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Refactor gdb.base/disp-step-syscall.exp for general step over test

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=2a3ebc9a18de882605aadf0c5f467c6eb61840b9>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-02 16:31 [binutils-gdb] [OBV] gdbserver: Only write ipa_tdesc_idx if agent is actually loaded sergiodj+buildbot
@ 2016-03-03  3:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03  3:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2999>

Commit(s) tested:
	6896a8fa1e1d24a8fcc9b30efc0b195246b46029

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	[OBV] gdbserver: Only write ipa_tdesc_idx if agent is actually loaded.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b122aa967d0e961f098b4df1f6923572d1fdd25a>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-02 16:16 [binutils-gdb] testsuite: Remove unnecessary code in fortran vla-history test sergiodj+buildbot
@ 2016-03-03  1:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03  1:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2998>

Commit(s) tested:
	065ab6dc804575bce7df58477b2cfcb2b2a6eafb

Author(s) (in the same order as the commits):
	Bernhard Heckel <bernhard.heckel@intel.com>

Subject:
	testsuite: Remove unnecessary code in fortran vla-history test.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=aa93d24363a5c24cbb7ca71383c6132b9a68b6b7>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-02 17:06 [binutils-gdb] testsuite: Fix timeout issues during print of vla-arrays sergiodj+buildbot
@ 2016-03-03  0:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-03  0:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2997>

Commit(s) tested:
	07e448ade17bc8fb52469a5b2184017f94669bd6

Author(s) (in the same order as the commits):
	bernhard.heckel <bernhard.heckel@intel.com>

Subject:
	testsuite: Fix timeout issues during print of vla-arrays.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8a5222da00dff3c57ab875f4b102f34776a30220>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-02  4:03 [binutils-gdb] Regenerate bfd files sergiodj+buildbot
@ 2016-03-02  6:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-02  6:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2990>

Commit(s) tested:
	70a5df4fe30fd37166c3b62071fd816e49082d2e

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Regenerate bfd files.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=27349b189ac9bbd81b22a7fff49c2ccd5be04882>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-01 18:47 [binutils-gdb] Fix gdb.trace/ftrace-lock.c compilation sergiodj+buildbot
@ 2016-03-02  3:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-02  3:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2988>

Commit(s) tested:
	86e501afd46d7f0d31738bd62457593401d79bad

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdb.trace/ftrace-lock.c compilation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6e612836f47b74afe57559dc72c11a00dd27428e>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
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: breakpoint (A) after the second 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-01 17:53 [binutils-gdb] Fix gdb.threads/watchpoint-fork*.c compilation sergiodj+buildbot
@ 2016-03-01 22:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-01 22:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2987>

Commit(s) tested:
	1e903e320352db86233e1dd2d10fd140f5d4a887

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdb.threads/watchpoint-fork*.c compilation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9726c5ab7fdf3cc6682f9130c55b402aa243fba5>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
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 (A) after the first fork
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: breakpoint (A) after the second 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: singlethread watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at A (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at A
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint A after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: watchpoint B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
PASS -> 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 (timeout)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: multithreaded watchpoints work at B
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the first fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint B after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-01 15:41 [binutils-gdb] Fix output path for arm-disp-step.exp sergiodj+buildbot
@ 2016-03-01 19:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-01 19:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2985>

Commit(s) tested:
	30ca9da1193ec4c82cc67a2ec2e6fb6adac7ab84

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Fix output path for arm-disp-step.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e2f55d2a80a5e012b97edd46c5292a826feb3601>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-01 12:05 [binutils-gdb] S390: Fix output path for s390-tdbregs test case sergiodj+buildbot
@ 2016-03-01 16:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-01 16:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2983>

Commit(s) tested:
	4a9321595003d86dd4794d0edab071f91989808e

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	S390: Fix output path for s390-tdbregs test case

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=df030f0d4a5dff031b829b6fff02ef854d8b820b>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 6 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 6 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-03-01 11:55 [binutils-gdb] S390: Fix internal error with stackless inferior sergiodj+buildbot
@ 2016-03-01 14:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-01 14:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2982>

Commit(s) tested:
	f24894771e384b1bc60dc0f2c104d7e7fad3c865

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	S390: Fix internal error with stackless inferior

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=097e896fa968af71a57a858b93384a3c44b4840d>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-29 17:29 [binutils-gdb] aarch64-linux process record: more syscalls sergiodj+buildbot
@ 2016-03-01 10:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-03-01 10:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2980>

Commit(s) tested:
	d521906965b3e94648a723a13576236aaba301d0

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	aarch64-linux process record: more syscalls

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6fa395baf71c71cbb5dc38e6b825cabc9590b329>

*** Regressions found ***
============================
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-29 16:58 [binutils-gdb] Support more syscalls in linux-record: pipe2 epoll_create1 eventfd2 fallocate dup3 and inotify_init1 sergiodj+buildbot
@ 2016-02-29 20:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-29 20:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2979>

Commit(s) tested:
	253b4d3a09e9edbb72d21127fbc85934ab1b7c07

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Support more syscalls in linux-record: pipe2 epoll_create1 eventfd2 fallocate dup3 and inotify_init1

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=1860a2fe90e9b4b3884f660cf72d76591539e8e1>

*** Regressions found ***
============================
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-28 15:25 [binutils-gdb] Don't recursively look for a symbol in all imports of imported modules sergiodj+buildbot
@ 2016-02-28 16:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-28 16:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2976>

Commit(s) tested:
	38899f16e1560ce3020bab8a6a0b3a0c017d7925

Author(s) (in the same order as the commits):
	Iain Buclaw <ibuclaw@gdcproject.org>

Subject:
	Don't recursively look for a symbol in all imports of imported modules.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=341af363e9a69513ca6885a70825d030cb27ddfa>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-26 20:20 [binutils-gdb] Add x86_64-*-rtems* target sergiodj+buildbot
@ 2016-02-27  6:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-27  6:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2973>

Commit(s) tested:
	f73dbb0e48ef50d2743fed89b68530b731329f05

Author(s) (in the same order as the commits):
	Joel Sherrill <joel.sherrill@oarcorp.com>

Subject:
	Add x86_64-*-rtems* target

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=166d5ac2e718dc63b38f39e223ff852ceb7a12bd>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-26 14:51 [binutils-gdb] Properly implement STT_COMMON sergiodj+buildbot
@ 2016-02-26 18:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-26 18:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2966>

Commit(s) tested:
	b8871f357fdfa9c0c06d2d3e5600391d8c994f37

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Properly implement STT_COMMON

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=2ccccc446e9a98e0528f71d0d5384d64ecf8675c>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-25 17:42 [binutils-gdb] avoid compiler warnings in remote-m32r-sdi.c sergiodj+buildbot
@ 2016-02-26  3:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-26  3:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2962>

Commit(s) tested:
	1547ef64562ebbfcdc768ce93979f09bdd119b11

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	avoid compiler warnings in remote-m32r-sdi.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6e88f0d914edd204556d23f401a5351ca11d9256>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <7337a6f2297cdd91bb852b479b284e5796d62cc9@gdb-build>
@ 2016-02-25 18:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-25 18:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2957>

Commit(s) tested:
	7337a6f2297cdd91bb852b479b284e5796d62cc9

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Surround $call_insn with \y in entry-values.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8a43f9ad62a34f421ed0a674d51dd650c0784003>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-25 12:24 [binutils-gdb] Add elf_x86_64_need_pic sergiodj+buildbot
@ 2016-02-25 14:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-25 14:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2955>

Commit(s) tested:
	ef77d6af7cade17c566e4d1ecff098b841972f17

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add elf_x86_64_need_pic

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=989ef9bfea947a4764d47cdc9582016a4348344d>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <338435ef105ff51e967571ad073830ec1eb5a4ab@gdb-build>
@ 2016-02-25  9:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-25  9:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2952>

Commit(s) tested:
	338435ef105ff51e967571ad073830ec1eb5a4ab

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	[OBV] gdb/rs6000: Fix maybe-uninitialized warning.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9c2500af3521577b2a09f580dad73642ed547e52>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-24 18:24 [binutils-gdb] Move new skip features to proper section (post 7.11) sergiodj+buildbot
@ 2016-02-25  5:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-25  5:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2950>

Commit(s) tested:
	d2dffb8d3be366d4d02de06e92c24c9abdb0adfc

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	Move new skip features to proper section (post 7.11).

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8269aaaa9559663578cc5a56dc01c3443d14189b>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-24 17:45 [binutils-gdb] powerpc: Support z-point type in gdbserver sergiodj+buildbot
@ 2016-02-25  3:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-25  3:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2949>

Commit(s) tested:
	657f9cde9d531c9929bef9e02a8064101d568f50

Author(s) (in the same order as the commits):
	Wei-cheng Wang <cole945@gmail.com>

Subject:
	powerpc: Support z-point type in gdbserver.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=974200c9228f0c5a334104e89db31fcfbaed859a>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-24 14:22 [binutils-gdb] [OPCODES][ARM][1/3]Add armv8.2 fp16 instruction dissembler support sergiodj+buildbot
@ 2016-02-24 23:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-24 23:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2947>

Commit(s) tested:
	b0c11777665276f8e9b590bbe4832a7c66f5093d

Author(s) (in the same order as the commits):
	Renlin Li <renlin.li@arm.com>

Subject:
	[OPCODES][ARM][1/3]Add armv8.2 fp16 instruction dissembler support.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=27f07035cf5079cc3b80bd264c772e51837b076c>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-24 14:09 [binutils-gdb] [OPCODE][ARM]Correct disassembler for cdp/cdp2, mcr/mcr2, mrc/mrc2, ldc/ldc2, stc/stc2 sergiodj+buildbot
@ 2016-02-24 20:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-24 20:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2945>

Commit(s) tested:
	8afc7bea4018bf535902503c9a25dd4a96dfa3ca

Author(s) (in the same order as the commits):
	Renlin Li <renlin.li@arm.com>

Subject:
	[OPCODE][ARM]Correct disassembler for cdp/cdp2, mcr/mcr2, mrc/mrc2, ldc/ldc2, stc/stc2

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=82d73fcbf076c4687ef09ab41f79e3d40ddb10cc>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-24  3:22 [binutils-gdb] Build unavailable-stack frames for tracepoint sergiodj+buildbot
@ 2016-02-24  4:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-24  4:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2939>

Commit(s) tested:
	50ae56ec464580492a5f987f658acc6ad82131b6

Author(s) (in the same order as the commits):
	Wei-cheng Wang <cole945@gmail.com>

Subject:
	Build unavailable-stack frames for tracepoint.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d91b04ccb2b90d1c94a04b2f5311b05a611b079b>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-23 21:37 [binutils-gdb] Extend "skip" command to support -file, -gfile, -function, -rfunction sergiodj+buildbot
@ 2016-02-23 23:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-23 23:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2938>

Commit(s) tested:
	cce0e92333b872cfe036aae611b6b5d61cf58186

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	Extend "skip" command to support -file, -gfile, -function, -rfunction.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=dbbb198aecb39adf4dfe7f7128dc3e6f0dba3cd5>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-23 18:34 [binutils-gdb] arm-tdep.c: Remove unused "to" parameters sergiodj+buildbot
@ 2016-02-23 20:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-23 20:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2937>

Commit(s) tested:
	1254566561957d2202d61e12881b0eb40d33a64c

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	arm-tdep.c: Remove unused "to" parameters

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=70c5b8cc9c0f3f48bd7fdec0accd139aa82ff2fd>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-23 13:32 [binutils-gdb] Make linker assigned symbol dynamic only for shared object sergiodj+buildbot
@ 2016-02-23 16:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-23 16:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2936>

Commit(s) tested:
	6b3b0ab89663306d17927d630304dbbd36e84570

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Make linker assigned symbol dynamic only for shared object

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a2b1074a910a6db0f72caa18101d5caaf1f7a06e>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-22 16:37 [binutils-gdb] gdb-gdb.py: SyntaxError: Missing parentheses in call to 'print' sergiodj+buildbot
@ 2016-02-22 21:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-22 21:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2929>

Commit(s) tested:
	ac46107c5c781894e013b10cd9fb5c98a8393d26

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	gdb-gdb.py: SyntaxError: Missing parentheses in call to 'print'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=dc16f911bb25087835f7c6e204b505fd4108b09f>

*** Regressions found ***
============================
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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-21 21:15 [binutils-gdb] Also update recursive call to d_lookup_symbol_imports sergiodj+buildbot
@ 2016-02-21 22:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-21 22:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2924>

Commit(s) tested:
	e08db6db1dd514f1c99f94bb6a9c1cfe02a1ab90

Author(s) (in the same order as the commits):
	Iain Buclaw <ibuclaw@gdcproject.org>

Subject:
	Also update recursive call to d_lookup_symbol_imports.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=fda23cd4618c5065baf778558fcab5fc119b19e1>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-21 20:46 [binutils-gdb] Remove search_parents parameter from d_lookup_symbol_imports sergiodj+buildbot
@ 2016-02-21 21:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-21 21:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2923>

Commit(s) tested:
	30a6a7f035026d05b52c92c26d4cb7ea3c6d6e5c

Author(s) (in the same order as the commits):
	Iain Buclaw <ibuclaw@gdcproject.org>

Subject:
	Remove search_parents parameter from d_lookup_symbol_imports.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 30a6a7f035026d05b52c92c26d4cb7ea3c6d6e5c>

*** Failed to compiled GDB.  ***
============================

+++ The full log is too big to be posted here.
+++ These are the last 100 lines of it.

gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o std-regs.o -MT std-regs.o -MMD -MP -MF .deps/std-regs.Tpo ../../binutils-gdb/gdb/std-regs.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o signals.o -MT signals.o -MMD -MP -MF .deps/signals.Tpo ../../binutils-gdb/gdb/common/signals.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o exec.o -MT exec.o -MMD -MP -MF .deps/exec.Tpo ../../binutils-gdb/gdb/exec.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o reverse.o -MT reverse.o -MMD -MP -MF .deps/reverse.Tpo ../../binutils-gdb/gdb/reverse.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o bcache.o -MT bcache.o -MMD -MP -MF .deps/bcache.Tpo ../../binutils-gdb/gdb/bcache.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o objfiles.o -MT objfiles.o -MMD -MP -MF .deps/objfiles.Tpo ../../binutils-gdb/gdb/objfiles.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o observer.o -MT observer.o -MMD -MP -MF .deps/observer.Tpo ../../binutils-gdb/gdb/observer.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o minsyms.o -MT minsyms.o -MMD -MP -MF .deps/minsyms.Tpo ../../binutils-gdb/gdb/minsyms.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o maint.o -MT maint.o -MMD -MP -MF .deps/maint.Tpo ../../binutils-gdb/gdb/maint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o demangle.o -MT demangle.o -MMD -MP -MF .deps/demangle.Tpo ../../binutils-gdb/gdb/demangle.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o dbxread.o -MT dbxread.o -MMD -MP -MF .deps/dbxread.Tpo ../../binutils-gdb/gdb/dbxread.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o coffread.o -MT coffread.o -MMD -MP -MF .deps/coffread.Tpo ../../binutils-gdb/gdb/coffread.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o coff-pe-read.o -MT coff-pe-read.o -MMD -MP -MF .deps/coff-pe-read.Tpo ../../binutils-gdb/gdb/coff-pe-read.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o dwarf2read.o -MT dwarf2read.o -MMD -MP -MF .deps/dwarf2read.Tpo ../../binutils-gdb/gdb/dwarf2read.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o mipsread.o -MT mipsread.o -MMD -MP -MF .deps/mipsread.Tpo ../../binutils-gdb/gdb/mipsread.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o stabsread.o -MT stabsread.o -MMD -MP -MF .deps/stabsread.Tpo ../../binutils-gdb/gdb/stabsread.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o corefile.o -MT corefile.o -MMD -MP -MF .deps/corefile.Tpo ../../binutils-gdb/gdb/corefile.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o dwarf2expr.o -MT dwarf2expr.o -MMD -MP -MF .deps/dwarf2expr.Tpo ../../binutils-gdb/gdb/dwarf2expr.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o dwarf2loc.o -MT dwarf2loc.o -MMD -MP -MF .deps/dwarf2loc.Tpo ../../binutils-gdb/gdb/dwarf2loc.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o dwarf2-frame.o -MT dwarf2-frame.o -MMD -MP -MF .deps/dwarf2-frame.Tpo ../../binutils-gdb/gdb/dwarf2-frame.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o dwarf2-frame-tailcall.o -MT dwarf2-frame-tailcall.o -MMD -MP -MF .deps/dwarf2-frame-tailcall.Tpo ../../binutils-gdb/gdb/dwarf2-frame-tailcall.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ada-lang.o -MT ada-lang.o -MMD -MP -MF .deps/ada-lang.Tpo ../../binutils-gdb/gdb/ada-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o c-lang.o -MT c-lang.o -MMD -MP -MF .deps/c-lang.Tpo ../../binutils-gdb/gdb/c-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o d-lang.o -MT d-lang.o -MMD -MP -MF .deps/d-lang.Tpo ../../binutils-gdb/gdb/d-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o f-lang.o -MT f-lang.o -MMD -MP -MF .deps/f-lang.Tpo ../../binutils-gdb/gdb/f-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o objc-lang.o -MT objc-lang.o -MMD -MP -MF .deps/objc-lang.Tpo ../../binutils-gdb/gdb/objc-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ada-tasks.o -MT ada-tasks.o -MMD -MP -MF .deps/ada-tasks.Tpo ../../binutils-gdb/gdb/ada-tasks.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ada-varobj.o -MT ada-varobj.o -MMD -MP -MF .deps/ada-varobj.Tpo ../../binutils-gdb/gdb/ada-varobj.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o c-varobj.o -MT c-varobj.o -MMD -MP -MF .deps/c-varobj.Tpo ../../binutils-gdb/gdb/c-varobj.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ui-out.o -MT ui-out.o -MMD -MP -MF .deps/ui-out.Tpo ../../binutils-gdb/gdb/ui-out.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o cli-out.o -MT cli-out.o -MMD -MP -MF .deps/cli-out.Tpo ../../binutils-gdb/gdb/cli-out.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o varobj.o -MT varobj.o -MMD -MP -MF .deps/varobj.Tpo ../../binutils-gdb/gdb/varobj.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o vec.o -MT vec.o -MMD -MP -MF .deps/vec.Tpo ../../binutils-gdb/gdb/common/vec.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o go-lang.o -MT go-lang.o -MMD -MP -MF .deps/go-lang.Tpo ../../binutils-gdb/gdb/go-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o go-valprint.o -MT go-valprint.o -MMD -MP -MF .deps/go-valprint.Tpo ../../binutils-gdb/gdb/go-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o go-typeprint.o -MT go-typeprint.o -MMD -MP -MF .deps/go-typeprint.Tpo ../../binutils-gdb/gdb/go-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o jv-lang.o -MT jv-lang.o -MMD -MP -MF .deps/jv-lang.Tpo ../../binutils-gdb/gdb/jv-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o jv-valprint.o -MT jv-valprint.o -MMD -MP -MF .deps/jv-valprint.Tpo ../../binutils-gdb/gdb/jv-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o jv-typeprint.o -MT jv-typeprint.o -MMD -MP -MF .deps/jv-typeprint.Tpo ../../binutils-gdb/gdb/jv-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o jv-varobj.o -MT jv-varobj.o -MMD -MP -MF .deps/jv-varobj.Tpo ../../binutils-gdb/gdb/jv-varobj.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o m2-lang.o -MT m2-lang.o -MMD -MP -MF .deps/m2-lang.Tpo ../../binutils-gdb/gdb/m2-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o opencl-lang.o -MT opencl-lang.o -MMD -MP -MF .deps/opencl-lang.Tpo ../../binutils-gdb/gdb/opencl-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o p-lang.o -MT p-lang.o -MMD -MP -MF .deps/p-lang.Tpo ../../binutils-gdb/gdb/p-lang.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o p-typeprint.o -MT p-typeprint.o -MMD -MP -MF .deps/p-typeprint.Tpo ../../binutils-gdb/gdb/p-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o p-valprint.o -MT p-valprint.o -MMD -MP -MF .deps/p-valprint.Tpo ../../binutils-gdb/gdb/p-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o sentinel-frame.o -MT sentinel-frame.o -MMD -MP -MF .deps/sentinel-frame.Tpo ../../binutils-gdb/gdb/sentinel-frame.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o complaints.o -MT complaints.o -MMD -MP -MF .deps/complaints.Tpo ../../binutils-gdb/gdb/complaints.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o typeprint.o -MT typeprint.o -MMD -MP -MF .deps/typeprint.Tpo ../../binutils-gdb/gdb/typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ada-typeprint.o -MT ada-typeprint.o -MMD -MP -MF .deps/ada-typeprint.Tpo ../../binutils-gdb/gdb/ada-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o c-typeprint.o -MT c-typeprint.o -MMD -MP -MF .deps/c-typeprint.Tpo ../../binutils-gdb/gdb/c-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o f-typeprint.o -MT f-typeprint.o -MMD -MP -MF .deps/f-typeprint.Tpo ../../binutils-gdb/gdb/f-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o m2-typeprint.o -MT m2-typeprint.o -MMD -MP -MF .deps/m2-typeprint.Tpo ../../binutils-gdb/gdb/m2-typeprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ada-valprint.o -MT ada-valprint.o -MMD -MP -MF .deps/ada-valprint.Tpo ../../binutils-gdb/gdb/ada-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o c-valprint.o -MT c-valprint.o -MMD -MP -MF .deps/c-valprint.Tpo ../../binutils-gdb/gdb/c-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o cp-valprint.o -MT cp-valprint.o -MMD -MP -MF .deps/cp-valprint.Tpo ../../binutils-gdb/gdb/cp-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o d-valprint.o -MT d-valprint.o -MMD -MP -MF .deps/d-valprint.Tpo ../../binutils-gdb/gdb/d-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o f-valprint.o -MT f-valprint.o -MMD -MP -MF .deps/f-valprint.Tpo ../../binutils-gdb/gdb/f-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o m2-valprint.o -MT m2-valprint.o -MMD -MP -MF .deps/m2-valprint.Tpo ../../binutils-gdb/gdb/m2-valprint.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o serial.o -MT serial.o -MMD -MP -MF .deps/serial.Tpo ../../binutils-gdb/gdb/serial.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o mdebugread.o -MT mdebugread.o -MMD -MP -MF .deps/mdebugread.Tpo ../../binutils-gdb/gdb/mdebugread.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o top.o -MT top.o -MMD -MP -MF .deps/top.Tpo ../../binutils-gdb/gdb/top.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o utils.o -MT utils.o -MMD -MP -MF .deps/utils.Tpo ../../binutils-gdb/gdb/utils.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o ui-file.o -MT ui-file.o -MMD -MP -MF .deps/ui-file.Tpo ../../binutils-gdb/gdb/ui-file.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o user-regs.o -MT user-regs.o -MMD -MP -MF .deps/user-regs.Tpo ../../binutils-gdb/gdb/user-regs.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o frame.o -MT frame.o -MMD -MP -MF .deps/frame.Tpo ../../binutils-gdb/gdb/frame.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o frame-unwind.o -MT frame-unwind.o -MMD -MP -MF .deps/frame-unwind.Tpo ../../binutils-gdb/gdb/frame-unwind.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o doublest.o -MT doublest.o -MMD -MP -MF .deps/doublest.Tpo ../../binutils-gdb/gdb/doublest.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o frame-base.o -MT frame-base.o -MMD -MP -MF .deps/frame-base.Tpo ../../binutils-gdb/gdb/frame-base.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o inline-frame.o -MT inline-frame.o -MMD -MP -MF .deps/inline-frame.Tpo ../../binutils-gdb/gdb/inline-frame.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o gnu-v2-abi.o -MT gnu-v2-abi.o -MMD -MP -MF .deps/gnu-v2-abi.Tpo ../../binutils-gdb/gdb/gnu-v2-abi.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o gnu-v3-abi.o -MT gnu-v3-abi.o -MMD -MP -MF .deps/gnu-v3-abi.Tpo ../../binutils-gdb/gdb/gnu-v3-abi.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o cp-abi.o -MT cp-abi.o -MMD -MP -MF .deps/cp-abi.Tpo ../../binutils-gdb/gdb/cp-abi.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o cp-support.o -MT cp-support.o -MMD -MP -MF .deps/cp-support.Tpo ../../binutils-gdb/gdb/cp-support.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o cp-namespace.o -MT cp-namespace.o -MMD -MP -MF .deps/cp-namespace.Tpo ../../binutils-gdb/gdb/cp-namespace.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o d-namespace.o -MT d-namespace.o -MMD -MP -MF .deps/d-namespace.Tpo ../../binutils-gdb/gdb/d-namespace.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o reggroups.o -MT reggroups.o -MMD -MP -MF .deps/reggroups.Tpo ../../binutils-gdb/gdb/reggroups.c
gcc -g -O2 -mminimal-toc  -I. -I../../binutils-gdb/gdb -I../../binutils-gdb/gdb/common -I../../binutils-gdb/gdb/config -DLOCALEDIR="\"/usr/local/share/locale\"" -DHAVE_CONFIG_H -I../../binutils-gdb/gdb/../include/opcode -I../../binutils-gdb/gdb/../opcodes/.. -I../../binutils-gdb/gdb/../readline/.. -I../../binutils-gdb/gdb/../zlib -I../bfd -I../../binutils-gdb/gdb/../bfd -I../../binutils-gdb/gdb/../include -I../libdecnumber -I../../binutils-gdb/gdb/../libdecnumber  -I../../binutils-gdb/gdb/gnulib/import -Ibuild-gnulib/import   -DTUI=1  -I/usr/include/python2.7 -I/usr/include/python2.7 -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Werror -c -o trad-frame.o -MT trad-frame.o -MMD -MP -MF .deps/trad-frame.Tpo ../../binutils-gdb/gdb/trad-frame.c
../../binutils-gdb/gdb/d-namespace.c: In function d_lookup_symbol_imports:
../../binutils-gdb/gdb/d-namespace.c:486:15: error: too many arguments to function d_lookup_symbol_imports
         sym = d_lookup_symbol_imports (current->import_src,
               ^
../../binutils-gdb/gdb/d-namespace.c:394:1: note: declared here
 d_lookup_symbol_imports (const char *scope, const char *name,
 ^
../../binutils-gdb/gdb/d-namespace.c:497:14: error: too many arguments to function d_lookup_symbol_imports
        sym = d_lookup_symbol_imports (current->import_src,
              ^
../../binutils-gdb/gdb/d-namespace.c:394:1: note: declared here
 d_lookup_symbol_imports (const char *scope, const char *name,
 ^
Makefile:1147: recipe for target 'd-namespace.o' failed
make[2]: *** [d-namespace.o] Error 1
make[2]: *** Waiting for unfinished jobs....
make[2]: Leaving directory '/home/gdb-buildbot/fedora-ppc64le-1/fedora-ppc64le/build/gdb'
Makefile:8826: recipe for target 'all-gdb' failed
make[1]: *** [all-gdb] Error 2
make[1]: Leaving directory '/home/gdb-buildbot/fedora-ppc64le-1/fedora-ppc64le/build'
Makefile:850: recipe for target 'all' failed
make: *** [all] Error 2
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-19 16:10 [binutils-gdb] Prevent a seg-fault in the linker when accessing a specially crafted, corrupt, aout binary sergiodj+buildbot
@ 2016-02-19 19:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-19 19:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2922>

Commit(s) tested:
	e517df3dbf7556ddb389228d713a804594ee3c1f

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Prevent a seg-fault in the linker when accessing a specially crafted, corrupt, aout binary.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=9054ea568294212ea599ba46ffd8509fa91276f4>

*** Regressions found ***
============================
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-18 21:14 [binutils-gdb] Add D support to gdb_default_target_compile sergiodj+buildbot
@ 2016-02-19  0:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-19  0:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2919>

Commit(s) tested:
	24f75eadabc519563ed119932c77874a016a799a

Author(s) (in the same order as the commits):
	Iain Buclaw <ibuclaw@gdcproject.org>

Subject:
	Add D support to gdb_default_target_compile.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b2abdd46c58a39c1bbd10fd7e045e4252ff648fd>

*** Regressions found ***
============================
new FAIL: gdb.base/info-os.exp: get process list (timeout)
new FAIL: gdb.base/info-os.exp: get process groups (timeout)
new FAIL: gdb.base/info-os.exp: get threads (timeout)
new FAIL: gdb.base/info-os.exp: get file descriptors (timeout)
new FAIL: gdb.base/info-os.exp: get internet-domain sockets (timeout)
new FAIL: gdb.base/info-os.exp: get shared-memory regions (timeout)
new FAIL: gdb.base/info-os.exp: get semaphores (timeout)
new FAIL: gdb.base/info-os.exp: get message queues (timeout)
new FAIL: gdb.base/info-os.exp: continue (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
new FAIL: gdb.base/info-os.exp: get process list (timeout)
new FAIL: gdb.base/info-os.exp: get process groups (timeout)
new FAIL: gdb.base/info-os.exp: get threads (timeout)
new FAIL: gdb.base/info-os.exp: get file descriptors (timeout)
new FAIL: gdb.base/info-os.exp: get internet-domain sockets (timeout)
new FAIL: gdb.base/info-os.exp: get shared-memory regions (timeout)
new FAIL: gdb.base/info-os.exp: get semaphores (timeout)
new FAIL: gdb.base/info-os.exp: get message queues (timeout)
new FAIL: gdb.base/info-os.exp: continue (timeout)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <f79a3bae8725dfe0e11b04ddfc6e6bc8f23e4e4e@gdb-build>
@ 2016-02-18 21:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-18 21:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2917>

Commit(s) tested:
	f79a3bae8725dfe0e11b04ddfc6e6bc8f23e4e4e

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb/s390: Fill guess_tracepoint_registers hook.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c22253e9d5e91eeea106db0ee61313e7e96c40e1>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-18 12:18 [binutils-gdb] Set breakpoint condition-evaluation in forking-threads-plus-breakpoint.exp sergiodj+buildbot
@ 2016-02-18 14:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-18 14:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2913>

Commit(s) tested:
	40fb20d037581bc9d4b17b6ab64ee98825cfacab

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Set breakpoint condition-evaluation in forking-threads-plus-breakpoint.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=1d784e4a5f8ca4f979b131f8ef5df3708fb0e740>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-17 17:04 [binutils-gdb] Add missing cleanup in exec_file_locate_attach sergiodj+buildbot
@ 2016-02-17 18:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-17 18:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2910>

Commit(s) tested:
	88178e828a0d1af133c19d6165e4d5ee59304adf

Author(s) (in the same order as the commits):
	Gary Benson <gbenson@redhat.com>

Subject:
	Add missing cleanup in exec_file_locate_attach

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=4c324e09397ba1b791ae5ff91f98c07ab1245b3e>

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-16 20:52 [binutils-gdb] Whitespace cleanup for skip testcase sergiodj+buildbot
@ 2016-02-17  3:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-17  3:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2908>

Commit(s) tested:
	21b1f8d2fc29b7e0585dbdca72c0b8a8bf070a2e

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	Whitespace cleanup for skip testcase.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b6fbc4e34293cad1eb8ebe5763fc47e88310cdcd>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-16  0:37 [binutils-gdb] Fix BFD format matching for x86_64-w64-mingw32 -m32 LTO sergiodj+buildbot
@ 2016-02-16  5:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-16  5:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2900>

Commit(s) tested:
	64bfc2584c013e7c60caceeffbad8250558e3cd2

Author(s) (in the same order as the commits):
	Joseph Myers <joseph@codesourcery.com>

Subject:
	Fix BFD format matching for x86_64-w64-mingw32 -m32 LTO.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=63269f8b8be1f78c856ea424dde361998ea0a1dc>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-16  0:16 [binutils-gdb] Add parentheses to prevent truncated addresses sergiodj+buildbot
@ 2016-02-16  4:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-16  4:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2899>

Commit(s) tested:
	4fd7268abff6f99dbbb78505f095bf1f54064db7

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Add parentheses to prevent truncated addresses

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=55d44e400ffdd265d651a59c5bb2ccaf2f227d5d>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-15 17:01 [binutils-gdb] testsuite: Fix some tests that write outside of the standard output directory sergiodj+buildbot
@ 2016-02-15 19:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-15 19:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2894>

Commit(s) tested:
	aa4803559b046ab4691965f8a4ceed1037b37629

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	testsuite: Fix some tests that write outside of the standard output directory

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8090a08e5bd260f195a3738a8f7619a2366b5aab>

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-15 11:25 [binutils-gdb] Enhance GAS's .section directive so that it can take numeric values for the flags and type fields. (ELF only) sergiodj+buildbot
@ 2016-02-15 14:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-15 14:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2892>

Commit(s) tested:
	9fb71ee49fc37163697e4f34e16097928eb83d66

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Enhance GAS's .section directive so that it can take numeric values for the flags and type fields.  (ELF only)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=726f11a02dd76e108d504ade02f47f3265879c9e>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-14  8:44 [binutils-gdb] testsuite: Fix false Fortran regressions with recent gcc sergiodj+buildbot
@ 2016-02-14 13:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-14 13:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2889>

Commit(s) tested:
	ba881f505ba211ffee59e68617cd1a02a7b4737b

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: Fix false Fortran regressions with recent gcc

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b971dc6a8795838c18be9d1d4f5767d2f9b16416>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <020ecd38e74681cb14987baf1a4d3c3ee3be0006@gdb-build>
@ 2016-02-13  2:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-13  2:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2881>

Commit(s) tested:
	020ecd38e74681cb14987baf1a4d3c3ee3be0006

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Deduplicate write_inferior_data_ptr.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=1c0037a9013ac474d95bbb46e3ec56da76c724f8>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <d21b5f15d92bc1902b9e57198f67550326c887d7@gdb-build>
@ 2016-02-13  0:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-13  0:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2880>

Commit(s) tested:
	d21b5f15d92bc1902b9e57198f67550326c887d7

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb: Fix build failure in xml-tdesc.c without expat.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=f263d0e2425e51127e414492d7d8318f26808238>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <7cae9051edc2e3b11b5c79c08edfb91ee7f4e2e4@gdb-build>
@ 2016-02-12 17:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-12 17:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2876>

Commit(s) tested:
	7cae9051edc2e3b11b5c79c08edfb91ee7f4e2e4

Author(s) (in the same order as the commits):
	Wei-cheng Wang <cole945@gmail.com>

Subject:
	gdbserver: Remove tracepoint_action ops.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=5989d3fdfd9352909a797a4551af623582b4cde2>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-11 20:15 [binutils-gdb] Add missing quotes to gdb/testsuite/README sergiodj+buildbot
@ 2016-02-12 15:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-12 15:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2875>

Commit(s) tested:
	acc23c113ab9602707574e7df120f96170a9731c

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Add missing quotes to gdb/testsuite/README

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=56e5c16d3d7939cb6d7ae914db25261723c8b362>

*** Regressions found ***
============================
new FAIL: gdb.base/info-os.exp: get process list (timeout)
new FAIL: gdb.base/info-os.exp: get process groups (timeout)
new FAIL: gdb.base/info-os.exp: get threads (timeout)
new FAIL: gdb.base/info-os.exp: get file descriptors (timeout)
new FAIL: gdb.base/info-os.exp: get internet-domain sockets (timeout)
new FAIL: gdb.base/info-os.exp: get shared-memory regions (timeout)
new FAIL: gdb.base/info-os.exp: get semaphores (timeout)
new FAIL: gdb.base/info-os.exp: get message queues (timeout)
new FAIL: gdb.base/info-os.exp: continue (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
new FAIL: gdb.base/info-os.exp: get process list (timeout)
new FAIL: gdb.base/info-os.exp: get process groups (timeout)
new FAIL: gdb.base/info-os.exp: get threads (timeout)
new FAIL: gdb.base/info-os.exp: get file descriptors (timeout)
new FAIL: gdb.base/info-os.exp: get internet-domain sockets (timeout)
new FAIL: gdb.base/info-os.exp: get shared-memory regions (timeout)
new FAIL: gdb.base/info-os.exp: get semaphores (timeout)
new FAIL: gdb.base/info-os.exp: get message queues (timeout)
new FAIL: gdb.base/info-os.exp: continue (timeout)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <9f5fed7852cae412443957862d759660cfcb3fd5@gdb-build>
@ 2016-02-12  4:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-12  4:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2869>

Commit(s) tested:
	9f5fed7852cae412443957862d759660cfcb3fd5

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Add a testcase for tdesc in tfile.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=7be1693ff8b3710f48423e68ccc828fc7b3b3973>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-10 17:06 [binutils-gdb] Clear *VAL in regcache_raw_read_unsigned sergiodj+buildbot
@ 2016-02-11 19:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-11 19:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2864>

Commit(s) tested:
	9f6a71b4bfdad8fa2fe33e86f799fa0d362973dc

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Clear *VAL in regcache_raw_read_unsigned

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=3d5a85aeb2c43d2be54252ee9d893e60f2544963>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <62e5fd57bcdfb58eadd08ec430c4dfd742027d8e@gdb-build>
@ 2016-02-11 13:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-11 13:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2861>

Commit(s) tested:
	62e5fd57bcdfb58eadd08ec430c4dfd742027d8e

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb/x86: Implement ax_pseudo_register_collect hook.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=49cc1d3c0d795028bb78280bde489a893005d862>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <473b99e5721ad623cc5826e03a73e2cf6cef4eb5@gdb-build>
@ 2016-02-11  9:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-11  9:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2859>

Commit(s) tested:
	473b99e5721ad623cc5826e03a73e2cf6cef4eb5

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Fix off-by-one in tfile_fetch_registers.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=91032ec9f0b7258b004d0326db1cf258b880afe6>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-10  4:06 [binutils-gdb] Update NEWS post GDB 7.11 branch creation sergiodj+buildbot
@ 2016-02-10 18:21 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-10 18:21 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2851>

Commit(s) tested:
	1233c0bae644451922bda07d03f1a66f3439dd20

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Update NEWS post GDB 7.11 branch creation.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=22d9e4324d1027e70be2c38b3910d5ba2b0361df>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 23:32 [binutils-gdb] Enable/update legacy linespecs in MI sergiodj+buildbot
@ 2016-02-10  9:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-10  9:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2846>

Commit(s) tested:
	39a67dc4f7d032c78f031e2d101b9552f1a6b57f

Author(s) (in the same order as the commits):
	Keith Seitz <keiths@redhat.com>

Subject:
	Enable/update legacy linespecs in MI.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=80027a929978b89b4a790ddd499358326d12e421>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 23:05 [binutils-gdb] Use string_to_event_location_basic in guile sergiodj+buildbot
@ 2016-02-10  8:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-10  8:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2845>

Commit(s) tested:
	a96e36da2f5278949099b0b985b2fa6ce474b135

Author(s) (in the same order as the commits):
	Keith Seitz <keiths@redhat.com>

Subject:
	Use string_to_event_location_basic in guile.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8bf2ec635beb64758687523def8f93060c8cb0fd>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 22:48 [binutils-gdb] Refactor string_to_event_location for legacy linespec support sergiodj+buildbot
@ 2016-02-10  4:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-10  4:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2843>

Commit(s) tested:
	eeb1af437c6f1ca111bc31b63eefc5344b553681

Author(s) (in the same order as the commits):
	Keith Seitz <keiths@redhat.com>

Subject:
	Refactor string_to_event_location for legacy linespec support.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=dddfaee34e6847dd20e0b4b9c40212f46be22804>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 16:46 [binutils-gdb] Fix compile time warnings building the binutils with a gcc6 compiler sergiodj+buildbot
@ 2016-02-10  2:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-10  2:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2842>

Commit(s) tested:
	609332f15cc2ad651d0ebd573010595a4593e89a

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix compile time warnings building the binutils with a gcc6 compiler.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8df4b0d12939be1b46194df4ff39d80bb45f6f62>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 14:16 [binutils-gdb] Modernize configure.ac's sergiodj+buildbot
@ 2016-02-10  0:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-10  0:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2841>

Commit(s) tested:
	1e94266c4db633f7defaf4bb68c74fd09a9cf9e2

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Modernize configure.ac's

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=11df7f5e59a46b30b41bce35d5d3248b16c427a7>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 12:41 [binutils-gdb] Fix PR19548: Breakpoint re-set inserts breakpoints when it shouldn't sergiodj+buildbot
@ 2016-02-09 22:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 22:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2840>

Commit(s) tested:
	2a7f3dffced7a20c992e1488d9f05fed8b8001fd

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR19548: Breakpoint re-set inserts breakpoints when it shouldn't

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=458d17e359b101af271ecf61900292aeda0148e3>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 2: caught interrupt
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: continue to tight loop
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 3: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 2: caught interrupt
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: continue to tight loop
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 3: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <8adce0342f5f50aba0154fc56ca59df45b219738@gdb-build>
@ 2016-02-09 20:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 20:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2839>

Commit(s) tested:
	8adce0342f5f50aba0154fc56ca59df45b219738

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix siginfo C++ build error

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=6e01a6e580a9b5bbc5410a80aafa42587f493fc6>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 11:06 [binutils-gdb] Add a more helpful warning message to explain why some AArch64 relocations can overflow sergiodj+buildbot
@ 2016-02-09 18:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 18:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2838>

Commit(s) tested:
	027e9c750c20fe8031a2b6d6272cd57bbf445df5

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add a more helpful warning message to explain why some AArch64 relocations can overflow.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=893e498dafa84c21d053e07d383f727564300c81>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 10:57 [binutils-gdb] Revert "Fix build breakage" sergiodj+buildbot
@ 2016-02-09 16:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 16:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2837>

Commit(s) tested:
	c23bbc1cdae6149de4175a75aa9bf9bcbc936fa4

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	Revert "Fix build breakage"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=5f4d7150cc8281bd320ca3edd918ddc0f32b9871>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 10:48 [binutils-gdb] Revert "Add a more helpful warning message to explain why some AArch64 relocations can overflow." sergiodj+buildbot
@ 2016-02-09 15:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 15:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2836>

Commit(s) tested:
	0635c8759326e9431604b3359185cbf96740521d

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	Revert "Add a more helpful warning message to explain why some AArch64 relocations can overflow."

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=f2e6a454e36c77a3d7ea6a4ee6c8f7daaeda4e1e>

*** Regressions found ***
============================
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 10:38 [binutils-gdb] Fix build breakage sergiodj+buildbot
@ 2016-02-09 13:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 13:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2835>

Commit(s) tested:
	222cab58b7ed37df6e01dacb0932f400a2588137

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	Fix build breakage

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=fc5535bf6095fd3dac6a2575e5deb1e46bc674b9>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-09 10:10 [binutils-gdb] Add a more helpful warning message to explain why some AArch64 relocations can overflow sergiodj+buildbot
@ 2016-02-09 11:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-09 11:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2834>

Commit(s) tested:
	2ea53e003163338a403d5afbb2046cafb8f3abe9

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add a more helpful warning message to explain why some AArch64 relocations can overflow.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c7682dda39efaf7bda8c59e0345cccd05843e840>

*** Regressions found ***
============================
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/signal-while-stepping-over-bp-other-thread.exp: step (pattern 3)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-08 19:40 [binutils-gdb] Always organize test artifacts in a directory hierarchy sergiodj+buildbot
@ 2016-02-08 23:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-08 23:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2832>

Commit(s) tested:
	2151ccc56c74b55a8f0debf0724a495368f92591

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Always organize test artifacts in a directory hierarchy

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a727929fc439b624d0f3f4b7dc0f0183bcf6296f>

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (GDB internal error)
new 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
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
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
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (GDB internal error)
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 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-08 19:12 [binutils-gdb] Fix in-tree, parallel running of Ada tests sergiodj+buildbot
@ 2016-02-08 21:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-08 21:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2831>

Commit(s) tested:
	437277d47a15711f29e02e5265ce8bbb8c8ef4f5

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix in-tree, parallel running of Ada tests

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e61a4c6408c9e09703269a048bac2a96c0d0c852>

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-08 18:12 [binutils-gdb] remote.c: Cleanup unused variables sergiodj+buildbot
@ 2016-02-08 19:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-08 19:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2830>

Commit(s) tested:
	5488790363bf8f338e7aec4731f8bed472a2fcf9

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	remote.c: Cleanup unused variables

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=3e4b6129e3706775cf2b3a08f081c64cc9e74ee5>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-07 14:56 [binutils-gdb] varobj: Cleanup dead code sergiodj+buildbot
@ 2016-02-07 16:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-07 16:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2829>

Commit(s) tested:
	30914ca8c030eedc4a7e1f1acc878211639cc1ca

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	varobj: Cleanup dead code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=ab98d863121bfc5a56156af75997d71a435162e9>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-06  1:39 [binutils-gdb] sim: mips: fix prog_bfd usage sergiodj+buildbot
@ 2016-02-06  3:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-06  3:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2828>

Commit(s) tested:
	1554f758410c4307103120424d35050e88433d85

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: mips: fix prog_bfd usage

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=26ea2e02a0362f06c76044ea21534251a5000555>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume
new FAIL: gdb.threads/fork-thread-pending.exp: 1, followed to the child, found one thread (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, followed to the child, found two threads (unknown output)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume
new FAIL: gdb.threads/fork-thread-pending.exp: 1, followed to the child, found one thread (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, followed to the child, found two threads (unknown output)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-02 21:21 [binutils-gdb] Fix typos in bfd/ChangeLog and bfd/elf64-x86-64.c sergiodj+buildbot
@ 2016-02-03  5:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-03  5:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2818>

Commit(s) tested:
	fb06f1c0f25d27006b28a94e54273a6bb35b5926

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Fix typos in bfd/ChangeLog and bfd/elf64-x86-64.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a01eb71f95d9f867e56c72130dc8ef0b1f00afe2>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 5 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-02 13:44 [binutils-gdb] PowerPC64 ELFv2 entry code sergiodj+buildbot
@ 2016-02-03  1:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-03  1:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2816>

Commit(s) tested:
	85fabe715c441e1c90fe913e2a6d65f0e487e5e8

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	PowerPC64 ELFv2 entry code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=8446f0d8a3b12eff1fdae212a120132def99bc2c>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-02 12:31 [binutils-gdb] Clear HAS_RELOC if there are no relocations sergiodj+buildbot
@ 2016-02-03  0:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-03  0:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2815>

Commit(s) tested:
	14f2c699ddca1e2f706342dffc59a6c7e23e844c

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Clear HAS_RELOC if there are no relocations

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=58282046f25e2a4567c5c10cb85e7e9851283578>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/linux-dp.exp: found an interesting thread
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-02 11:38 [binutils-gdb] epiphany/disassembler: Improve alignment of output sergiodj+buildbot
@ 2016-02-02 20:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-02 20:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2813>

Commit(s) tested:
	b89807c67baf4f31125d151f2dc3532b3420964d

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	epiphany/disassembler: Improve alignment of output.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=b804a077bf2df2ec775e5d3c47732636077031e5>

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-02 12:26 [binutils-gdb] Adaptation of siginfo fixup for the new bnd fields sergiodj+buildbot
@ 2016-02-02 19:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-02 19:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2812>

Commit(s) tested:
	3f2f6cb5e8922b680de9d67ad83d3b571d3b2a46

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	Adaptation of siginfo fixup for the new bnd fields

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=a8ff334e66a156a55b968dac4e21c75102059abe>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-02 11:05 [binutils-gdb] Preparation for new siginfo on Linux sergiodj+buildbot
@ 2016-02-02 14:09 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-02 14:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2809>

Commit(s) tested:
	43564574f1de367f537a37bf6ec83bb4c29627c6

Author(s) (in the same order as the commits):
	Walfred Tedeschi <walfred.tedeschi@intel.com>

Subject:
	Preparation for new siginfo on Linux

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=e63ca638ecaf4c19a6f265971a3b8b9e88898b03>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01 23:59 [binutils-gdb] Don't add DT_NEEDED for unmatched symbol sergiodj+buildbot
@ 2016-02-02  3:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-02  3:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2807>

Commit(s) tested:
	aef28989904e92e391fee905e51abc6bb2fd4de0

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Don't add DT_NEEDED for unmatched symbol

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=4c9beb9ede3b56fc4078c1012797d9094068f8a3>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01 23:33 [binutils-gdb] gdb.base/skip.exp: Clean up multiple references to same test name sergiodj+buildbot
@ 2016-02-02  1:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-02  1:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2806>

Commit(s) tested:
	9482b9fbb6414468228c618c165e397116a4a8f8

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	gdb.base/skip.exp: Clean up multiple references to same test name.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=36f99c4cc351178bf6fc95a65038775e8a937c31>

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01 19:35 [binutils-gdb] Test gdb.threads/forking-threads-plus-breakpoint.exp with displaced stepping off sergiodj+buildbot
@ 2016-02-01 23:04 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-01 23:04 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2805>

Commit(s) tested:
	6b2e4f10aeb64868720de06d3b2da3cc2d908f10

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Test gdb.threads/forking-threads-plus-breakpoint.exp with displaced stepping off

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=83339d3ef50a72f0dcdf4e1bd75b1f46d41d8710>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01 18:23 [binutils-gdb] gdb: New set/show max-value-size command sergiodj+buildbot
@ 2016-02-01 19:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-01 19:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2803>

Commit(s) tested:
	5fdf6324fafd60f967e2e8323fdacf84b1bfcea3

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	gdb: New set/show max-value-size command.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=cae0b5f69dbde02db5c1f1fa8b12ee639d55f5e5>

*** Regressions found ***
============================
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was filled (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub.exp: print array2 in foo after it was mofified in debugger (passed fixed array)
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was filled
PASS -> FAIL: gdb.fortran/vla-value-sub-finish.exp: print array2 in foo after it was mofified in debugger
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01 13:53 [binutils-gdb] Add support for importing data from ILF images sergiodj+buildbot
@ 2016-02-01 17:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-01 17:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2802>

Commit(s) tested:
	655ed9ea1703173cb796070ed9843ea90bb74e58

Author(s) (in the same order as the commits):
	Nathaniel Smith <njs@pobox.com>

Subject:
	Add support for importing data from ILF images.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=7cbe7068149cefccb3e1406aef1b6614299ca2d0>

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (the program is no longer running)
PASS -> 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: detach (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (the program is no longer running)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (the program is no longer running)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01  3:36 [binutils-gdb] Fix some comments in varobj.{c,h} sergiodj+buildbot
@ 2016-02-01  6:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-01  6:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2798>

Commit(s) tested:
	5fa1307022c1278575846faba5f3391b70d64b16

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix some comments in varobj.{c,h}

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=61ac74af3b91382f58580952eab0473e1066c075>

*** Regressions found ***
============================
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-02-01  3:01 [binutils-gdb] elf64-s390.c: Fix -Werror=misleading-indentation sergiodj+buildbot
@ 2016-02-01  4:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-02-01  4:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2797>

Commit(s) tested:
	0bc7245a3a6da700ed13bace22cdc157dc80f58d

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	elf64-s390.c: Fix -Werror=misleading-indentation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=36dd42f489d838ab1b3d621a82698a7360866c76>

*** Regressions found ***
============================
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-specific-bp.exp: non-stop: continue to end (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-31 20:38 [binutils-gdb] Fix /usr/bin/ld: final link failed: File truncated error on hppa sergiodj+buildbot
@ 2016-01-31 22:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-31 22:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2796>

Commit(s) tested:
	6d4b2867f8441c7bf75dfef6b3c95a10241f9709

Author(s) (in the same order as the commits):
	John David Anglin <danglin@gcc.gnu.org>

Subject:
	Fix /usr/bin/ld: final link failed: File truncated error on hppa.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=f6c8c97fcb7006691d6fcac456689154528885ec>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-29 20:45 [binutils-gdb] Fix two misleading indentation warnings sergiodj+buildbot
@ 2016-01-29 22:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-29 22:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2794>

Commit(s) tested:
	a2e3e93f4423899d99687da3ce4ac57cbed437f9

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix two misleading indentation warnings

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=0efaedc50985d4c57c8f206ad9f89dc722bdb307>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-28 21:00 [binutils-gdb] Sync libiberty with GCC sergiodj+buildbot
@ 2016-01-28 22:37 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-28 22:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2791>

Commit(s) tested:
	9d98de835cb018419e0ef97db37fcf9061247750

Author(s) (in the same order as the commits):
	Iain Buclaw <ibuclaw@gdcproject.org>

Subject:
	Sync libiberty with GCC.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=c63c2fe3417e6f6a0e58821c8088fe89bae622f6>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFUZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFWZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFVZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFRZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNaZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNbZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNcZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNdZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNeZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNfZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNaNbZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNbNaZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNdNfNaZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D2rt6dmain211_d_run_mainUiPPaPUAAaZiZ7tryExecMFMDFZvZv
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFUZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFWZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFVZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFRZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNaZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNbZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNcZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNdZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNeZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNfZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNaNbZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNbNaZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D8demangle4testFFNdNfNaZaZv
PASS -> FAIL: gdb.dlang/demangle.exp: _D2rt6dmain211_d_run_mainUiPPaPUAAaZiZ7tryExecMFMDFZvZv
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-28 15:47 [binutils-gdb] Import strchrnul from gnulib and use it sergiodj+buildbot
@ 2016-01-28 19:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-28 19:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2789>

Commit(s) tested:
	8424cc978c8c76aca7945d50408762de65646095

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Import strchrnul from gnulib and use it

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=d4955be2a7e92c1f8c3d2bf8c322ca3948134bf1>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 6 two
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 6 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-27 11:38 [binutils-gdb] Add Keith Seitz as Linespec Maintainer sergiodj+buildbot
@ 2016-01-27 13:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-27 13:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2785>

Commit(s) tested:
	c07af0ab296efebf868a153e6c98cb65c5c23d04

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Add Keith Seitz as Linespec Maintainer

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=182b5f0e7142ed7435fa0792d595fbcd944ce311>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.fortran/vla-value.exp: print allocated &vla1
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/checkpoint-ns.exp: step in 7 two
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: step over value assignment of vla1 (timeout)
PASS -> FAIL: gdb.fortran/vla-value.exp: print allocated &vla1
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-26 21:41 [binutils-gdb] Fix function comments sergiodj+buildbot
@ 2016-01-26 23:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-26 23:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2784>

Commit(s) tested:
	41548caa9b7ffba43e856bd288b98cc1ab8c3e8f

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	Fix function comments

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=31307915fa46d7aa9aac1313da5450ad84eada4b>

*** Regressions found ***
============================
new FAIL: gdb.fortran/vla-value.exp: step over value assignment of vla1 (timeout)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: step over value assignment of vla1 (timeout)
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-26 14:48 [binutils-gdb] Remove argument pc in get_next_pcs sergiodj+buildbot
@ 2016-01-26 21:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-26 21:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2783>

Commit(s) tested:
	4d18591be953e2faeaaa280484d375fe05857770

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove argument pc in get_next_pcs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=fb06a5c2188e2ab96450d088eb3cc81b1d4c36ad>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: reset timer in the inferior (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: print seconds_left (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 1 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 2 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break at break_fn: 3 (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: kill process (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: set breakpoint always-inserted off (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: delete all breakpoints in delete_breakpoints (timeout)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 3: caught interrupt
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue to tight loop
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 4: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 4: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 5: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 5: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 6: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 6: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 7: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 7: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 8: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 8: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 9: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 9: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 10: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 10: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 11: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 11: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 12: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 12: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 13: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 13: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 14: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 14: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 15: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 15: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 16: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 16: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 17: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 17: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 18: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 18: caught interrupt
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue to tight loop (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: switch to non-event thread
new FAIL: gdb.threads/continue-pending-status.exp: attempt 19: continue for ctrl-c (the program is no longer running)
PASS -> FAIL: gdb.threads/continue-pending-status.exp: attempt 19: caught interrupt
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-26 14:03 [binutils-gdb] [GDBserver] Check input interrupt after reading in a packet sergiodj+buildbot
@ 2016-01-26 15:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-26 15:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2780>

Commit(s) tested:
	18879fef1741464e522624bcc529048400453e0d

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[GDBserver] Check input interrupt after reading in a packet

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=30aa71f3e15ff9e2700c33dc46a2cfabd8bdb8e4>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 7 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <a579cd9aa8c57c8a54833f26452a1afef38e5d20@gdb-build>
@ 2016-01-26  0:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-26  0:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2779>

Commit(s) tested:
	a579cd9aa8c57c8a54833f26452a1afef38e5d20

Author(s) (in the same order as the commits):
	Mark Wielaard <mjw@redhat.com>

Subject:
	Fix GCC6 -Wmisleading-indentation issues.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<http://gdb-build.sergiodj.net/cgit/Fedora-ppc64le-m64/.git/tree/?h=master&id=7e5a6ae43b390ad5ab72b4bc45564f423fd571e1>

*** Regressions found ***
============================
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.arch/altivec-abi.exp: generic ABI, forced: step into vec_fun
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +4: .long 0x7c642ed8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +12: .long 0x7d642ed9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +20: .long 0x7c642fd8
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +28: .long 0x7d642fd9
PASS -> FAIL: gdb.arch/powerpc-power.exp: Found +548: waitasec
new FAIL: gdb.base/checkpoint-ns.exp: breakpoint 1 6 one (timeout)
PASS -> FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: second disp (the program exited)
PASS -> FAIL: gdb.base/display.exp: info disp
new FAIL: gdb.base/display.exp: next hit (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: disp *p_i
PASS -> FAIL: gdb.base/display.exp: p p_i = 0x0
PASS -> FAIL: gdb.base/display.exp: display bad address
PASS -> FAIL: gdb.base/display.exp: p p_i = &i
PASS -> FAIL: gdb.base/display.exp: display good address
new FAIL: gdb.base/display.exp: watch off (the program is no longer running)
new FAIL: gdb.base/display.exp: finish (the program is no longer running)
new FAIL: gdb.base/display.exp: step (the program is no longer running)
new FAIL: gdb.base/display.exp: cont (the program is no longer running)
PASS -> FAIL: gdb.base/display.exp: printf "%d%d",i
PASS -> FAIL: gdb.base/display.exp: print/k j
PASS -> FAIL: gdb.base/display.exp: debug test output 1
PASS -> FAIL: gdb.base/display.exp: debug test output 1a
PASS -> FAIL: gdb.base/display.exp: debug test output 2
PASS -> FAIL: gdb.base/display.exp: debug test output 2a
PASS -> FAIL: gdb.base/display.exp: debug test output 3
PASS -> FAIL: gdb.base/display.exp: x/0 j
PASS -> FAIL: gdb.base/display.exp: ignored s
PASS -> FAIL: gdb.base/display.exp: print/a $pc
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue (the program exited)
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: watchpoint hit 2
PASS -> FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, first time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to second instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: continue to first instance watchpoint, second time (the program exited)
new FAIL: gdb.base/recurse.exp: first instance watchpoint deleted when leaving scope (the program is no longer running)
PASS -> FAIL: gdb.base/stap-probe.exp: without semaphore, optimized: set multi-location probe breakpoint (probe two)
PASS -> FAIL: gdb.base/stap-probe.exp: with semaphore, optimized: set multi-location probe breakpoint (probe two)
new FAIL: gdb.base/value-double-free.exp: continue (the program exited)
PASS -> FAIL: gdb.base/value-double-free.exp: print empty()
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 0->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 0->5: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.a: 1->0: continue (the program exited)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: continue (the program is no longer running)
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: q.e: 5->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit (the program is no longer running)
new FAIL: gdb.base/watch-cond.exp: watchpoint with global expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint with local expression, local condition evaluates in correct frame (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers (timeout)
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes (timeout)
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression (timeout)
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: continue to marker2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit in test_disabling_watchpoints, second time (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
new FAIL: gdb.base/watchpoint.exp: disabled watchpoint skipped (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_disabling_watchpoints (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: static local watch did not self-delete
new FAIL: gdb.base/watchpoint.exp: cont (the program exited)
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: cont (the program is no longer running) <<2>>
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization (the program is no longer running) <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: set local watch in recursive call with explicit scope
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2) (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: watchpoint on buf hit (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: watch $pc
PASS -> FAIL: gdb.base/watchpoint.exp: disable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: reenable watchpoint `$pc'
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint `$pc' is enabled
PASS -> FAIL: gdb.base/watchpoint.exp: delete watchpoint `$pc'
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func5 breakpoint here (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: watch -location .x
new FAIL: gdb.base/watchpoint.exp: continue with watch -location (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func6 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2 (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func7 breakpoint here (the program is no longer running)
new FAIL: gdb.base/watchpoint.exp: continue with watch foo4 (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint.exp: rwatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint.exp: awatch disallowed for register based expression
PASS -> FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue
new FAIL: gdb.base/watchpoint-hw-hit-once.exp: continue to break-at-exit (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time (the program exited)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time (the program is no longer running)
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to watchpoint hit again
new FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: hardware watchpoint triggers (the program exited)
PASS -> FAIL: gdb.base/watchpoint-stops-at-right-insn.exp: always-inserted off: get hw watchpoint PC
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on first read (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers on read after value changed (timeout)
new FAIL: gdb.base/watch-read.exp: set write watchpoint on global variable (timeout)
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers (timeout)
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes (timeout)
new FAIL: gdb.base/watch-read.exp: read watchpoint triggers when value doesn't change, trapping reads and writes (timeout)
new FAIL: gdb.base/watch-read.exp: only read watchpoint triggers when value doesn't change (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 1 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 2 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 3 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 4 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5 (timeout)
new FAIL: gdb.base/watch_thread_num.exp: Check thread that triggered iteration 5 (timeout)
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw) (the program exited)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 1)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception without a handler. (timeout)
new FAIL: gdb.cp/gdb2495.exp: bt after returning from a popped frame (timeout)
new FAIL: gdb.cp/gdb2495.exp: info breakpoints (timeout)
new FAIL: gdb.cp/gdb2495.exp: (timeout) set unwind-on-terminating-exception off
new FAIL: gdb.cp/gdb2495.exp: Turn off unwind on terminating exception flag (timeout)
new FAIL: gdb.cp/gdb2495.exp: Call a function that raises an exception with unwinding off.. (timeout)
new FAIL: gdb.cp/gdb2495.exp: delete all breakpoints in delete_breakpoints (timeout)
new FAIL: gdb.cp/vla-cxx.exp: continue to breakpoint: vlas_filled (the program exited)
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vla
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref
PASS -> FAIL: gdb.cp/vla-cxx.exp: print vlaref2
PASS -> FAIL: gdb.cp/vla-cxx.exp: print c
new FAIL: gdb.dwarf2/bad-regnum.exp: info addr foo1
new FAIL: gdb.fortran/vla-ptype.exp: ptype pvla not initialized
new FAIL: gdb.fortran/vla-sizeof.exp: print sizeof non-associated pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla
new FAIL: gdb.fortran/vla-value.exp: print non-associated &pvla
new FAIL: gdb.fortran/vla-value.exp: print undefined pvla(1,3,8)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (unknown output after running) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (unknown output after running)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write (the program exited)
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write (the program exited)
PASS -> FAIL: gdb.reverse/fstatat-reverse.exp: check fstatat record
PASS -> FAIL: gdb.server/non-existing-program.exp: gdbserver exits cleanly
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: find addresses: continue to watchpoint
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: displaced=off: with thread-specific bp: continue: continue
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work (GDB internal error)
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (the program exited)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish (the program is no longer running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (GDB internal error)
new FAIL: gdb.threads/watchthreads2.exp: x watch loop (the program exited)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 20 on watched_data (timeout)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 20 on watched_data (timeout)
============================


*** Failures that are being ignored ***
============================
============================




^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25 16:27 [binutils-gdb] Remove new_thread_notify and dead_thread_notify sergiodj+buildbot
@ 2016-01-25 21:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 21:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2778>

Commit(s) tested:
	a0f8e08a3c357ae24d3244940e1c6b405a0c17cc

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Remove new_thread_notify and dead_thread_notify

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a0f8e08a3c357ae24d3244940e1c6b405a0c17cc>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25 16:18 [binutils-gdb] ARC/BFD: Fix a build error from `index' shadowing a global declaration sergiodj+buildbot
@ 2016-01-25 20:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 20:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2777>

Commit(s) tested:
	840855c5edfb840a97fb063fd8f44a7e9e537b87

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	ARC/BFD: Fix a build error from `index' shadowing a global declaration

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 840855c5edfb840a97fb063fd8f44a7e9e537b87>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25 15:24 [binutils-gdb] [PATCH[ARM]Check mapping symbol while backward searching for IT block sergiodj+buildbot
@ 2016-01-25 18:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 18:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2776>

Commit(s) tested:
	5bc5ae8810c03b55f46b9e575389c3fa85a62b5c

Author(s) (in the same order as the commits):
	Renlin Li <renlin.li@arm.com>

Subject:
	[PATCH[ARM]Check mapping symbol while backward searching for IT block.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5bc5ae8810c03b55f46b9e575389c3fa85a62b5c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25 13:48 [binutils-gdb] Fix PR 19461: strange "info thread" behavior in non-stop sergiodj+buildbot
@ 2016-01-25 17:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 17:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2775>

Commit(s) tested:
	a2077e254098828614ef6621cf8df28185e711d0

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR 19461: strange "info thread" behavior in non-stop

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a2077e254098828614ef6621cf8df28185e711d0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25 13:40 [binutils-gdb] Fix PR 19494: hang when killing unfollowed fork children sergiodj+buildbot
@ 2016-01-25 16:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 16:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2774>

Commit(s) tested:
	1d2736d43ba16c585e643faec4b6a5084d782289

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR 19494: hang when killing unfollowed fork children

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1d2736d43ba16c585e643faec4b6a5084d782289>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25 13:32 [binutils-gdb] Move foreach_with_prefix to lib/gdb.exp sergiodj+buildbot
@ 2016-01-25 14:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 14:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2773>

Commit(s) tested:
	f1da4b11eef6dba04a1cfa579c6ba313718105b8

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Move foreach_with_prefix to lib/gdb.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f1da4b11eef6dba04a1cfa579c6ba313718105b8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <45f3854667c659ab053f51f96e1923f36e6e20ba@gdb-build>
@ 2016-01-25 13:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 13:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2772>

Commit(s) tested:
	45f3854667c659ab053f51f96e1923f36e6e20ba

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace/testsuite: Bump stack collection fudge factor.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 45f3854667c659ab053f51f96e1923f36e6e20ba>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25  9:54 [binutils-gdb] Add missing end-of-comment marker to previous delta. (Doh!) sergiodj+buildbot
@ 2016-01-25 11:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25 11:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2771>

Commit(s) tested:
	c244074cb684302be1378a072b33cdb8dd0dff1f

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Add missing end-of-comment marker to previous delta.  (Doh!)

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c244074cb684302be1378a072b33cdb8dd0dff1f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-25  9:41 [binutils-gdb] Fix memory corruption on Mach-O systems by suppressing a memory tidy up sergiodj+buildbot
@ 2016-01-25  9:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-25  9:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2770>

Commit(s) tested:
	cf466c2ac5ac55bb9b30b96fbdcad564e8c1ccc8

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix memory corruption on Mach-O systems by suppressing a memory tidy up.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for cf466c2ac5ac55bb9b30b96fbdcad564e8c1ccc8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-24  1:27 [binutils-gdb] MIPS/BFD: Simplify register index calculation in BZ16_REG_FIELD sergiodj+buildbot
@ 2016-01-24  3:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-24  3:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2769>

Commit(s) tested:
	eb6b0cf45d7588eb147d90ce790254309a69613e

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Simplify register index calculation in BZ16_REG_FIELD

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for eb6b0cf45d7588eb147d90ce790254309a69613e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-24  1:16 [binutils-gdb] MIPS/BFD: Correct register index calculation in BZ16_REG sergiodj+buildbot
@ 2016-01-24  2:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-24  2:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2768>

Commit(s) tested:
	e67f83e590b8ce7a9912f665aa559cbc98c05de6

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/BFD: Correct register index calculation in BZ16_REG

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e67f83e590b8ce7a9912f665aa559cbc98c05de6>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <dc29a1ce6a25233e608f90511e67af3c18e19a98@gdb-build>
@ 2016-01-23 15:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-23 15:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2767>

Commit(s) tested:
	dc29a1ce6a25233e608f90511e67af3c18e19a98

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Fix unavailable-dwarf-piece.exp on big endian targets

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for dc29a1ce6a25233e608f90511e67af3c18e19a98>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <cc5fd9abe4980e48e2cc27b0225f3c6ba7c0756b@gdb-build>
@ 2016-01-23 12:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-23 12:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2766>

Commit(s) tested:
	cc5fd9abe4980e48e2cc27b0225f3c6ba7c0756b

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Fix another expected message on continue.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for cc5fd9abe4980e48e2cc27b0225f3c6ba7c0756b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22 21:00 [binutils-gdb] testsuite: gdb.gdb/selftest.exp: Drop expected Thread number sergiodj+buildbot
@ 2016-01-22 23:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22 23:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2765>

Commit(s) tested:
	092127d743462e370fd1156cb746f814a7b46593

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: gdb.gdb/selftest.exp: Drop expected Thread number

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 092127d743462e370fd1156cb746f814a7b46593>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22 20:50 [binutils-gdb] testsuite: Fix PR threads/19422 regression + Guile regression sergiodj+buildbot
@ 2016-01-22 22:02 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22 22:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2764>

Commit(s) tested:
	31d765d3801c63a66312023181edb3af25c03598

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: Fix PR threads/19422 regression + Guile regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 31d765d3801c63a66312023181edb3af25c03598>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22 17:04 [binutils-gdb] Reword the string description of native FreeBSD ptids sergiodj+buildbot
@ 2016-01-22 18:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22 18:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2763>

Commit(s) tested:
	b2bae2f79b11a87af3dbc2a6ca3c0c4987ecfbba

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Reword the string description of native FreeBSD ptids.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b2bae2f79b11a87af3dbc2a6ca3c0c4987ecfbba>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <99e8eb11cfcdde8cba6755ed4613c3cb079dfaa4@gdb-build>
@ 2016-01-22 15:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22 15:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2762>

Commit(s) tested:
	99e8eb11cfcdde8cba6755ed4613c3cb079dfaa4

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Fix write_inferior_data_ptr on 32-bit big-endian machines.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 99e8eb11cfcdde8cba6755ed4613c3cb079dfaa4>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22  9:39 [binutils-gdb] [testsuite] Unbuffer the output in gdb.base/multi-forks.c sergiodj+buildbot
@ 2016-01-22 11:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22 11:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2761>

Commit(s) tested:
	1ac78c044471fa65b952c2e5c47dcf4d0ccf9b79

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[testsuite] Unbuffer the output in gdb.base/multi-forks.c

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1ac78c044471fa65b952c2e5c47dcf4d0ccf9b79>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22  9:13 [binutils-gdb] [ARM] perror_with_name when failed to fetch/store registers sergiodj+buildbot
@ 2016-01-22 10:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22 10:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2760>

Commit(s) tested:
	d86feca31bd9b814fd5317a0ebdbe86fb812a1bd

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] perror_with_name when failed to fetch/store registers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for d86feca31bd9b814fd5317a0ebdbe86fb812a1bd>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22  1:15 [binutils-gdb] * breakpoint.c (init_breakpoint_sal): Add comment sergiodj+buildbot
@ 2016-01-22  3:14 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22  3:14 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2759>

Commit(s) tested:
	b35a8b2f1f44c6ea48aeb6f7a74de01f6f5016fb

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	* breakpoint.c (init_breakpoint_sal): Add comment.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b35a8b2f1f44c6ea48aeb6f7a74de01f6f5016fb>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-22  0:30 [binutils-gdb] * lib/ada.exp (gdb_compile_ada): Fix typo sergiodj+buildbot
@ 2016-01-22  1:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22  1:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2758>

Commit(s) tested:
	4f5946a8630ec027d412ee078974f8d92e5ab3a0

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

Subject:
	* lib/ada.exp (gdb_compile_ada): Fix typo.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4f5946a8630ec027d412ee078974f8d92e5ab3a0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <f906b857015513af81f94db8e11b1e334c767def@gdb-build>
@ 2016-01-22  0:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-22  0:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2757>

Commit(s) tested:
	f906b857015513af81f94db8e11b1e334c767def

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	gdb.trace: Fix string collection for 64-bit platforms.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f906b857015513af81f94db8e11b1e334c767def>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 14:04 [binutils-gdb] Fix compile time errors building ARC target on a 32-bit host sergiodj+buildbot
@ 2016-01-21 23:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 23:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2756>

Commit(s) tested:
	23a42089156e63bbd2228675e78cdf1ffae63c51

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix compile time errors building ARC target on a 32-bit host.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 23a42089156e63bbd2228675e78cdf1ffae63c51>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 12:28 [binutils-gdb] gdb: Small cleanup to disasm.c:maybe_add_dis_line_entry sergiodj+buildbot
@ 2016-01-21 21:50 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 21:50 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2755>

Commit(s) tested:
	4a099de2e7e5374d633ba0eab4273b6f5c81ba74

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	gdb: Small cleanup to disasm.c:maybe_add_dis_line_entry

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4a099de2e7e5374d633ba0eab4273b6f5c81ba74>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 11:45 [binutils-gdb] gdb: Respect CXXFLAGS when building with C++ compiler sergiodj+buildbot
@ 2016-01-21 19:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 19:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2754>

Commit(s) tested:
	a994041db36c9a6058fe591c7ccd018ed7affc76

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	gdb: Respect CXXFLAGS when building with C++ compiler

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a994041db36c9a6058fe591c7ccd018ed7affc76>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 11:03 [binutils-gdb] Fix unexpected failures in the linker testsuite for ARM VxWorks targets sergiodj+buildbot
@ 2016-01-21 18:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 18:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2753>

Commit(s) tested:
	aebf9be7089c1903581740851ae9ae67ffee2f4b

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix unexpected failures in the linker testsuite for ARM VxWorks targets.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for aebf9be7089c1903581740851ae9ae67ffee2f4b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 10:33 [binutils-gdb] Fix regression introduced in "break *<EXPR>" by explicit location patches sergiodj+buildbot
@ 2016-01-21 16:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 16:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2752>

Commit(s) tested:
	305e13e67faaf940ce6eb708847a655a0735a651

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Fix regression introduced in "break *<EXPR>" by explicit location patches.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 305e13e67faaf940ce6eb708847a655a0735a651>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 10:14 [binutils-gdb] [AArch64] Relax long branch veneer insertion for non STT_FUNC symbol sergiodj+buildbot
@ 2016-01-21 15:26 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 15:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2751>

Commit(s) tested:
	2f340668a9a7c00f8813b097b157b07fba8cfa82

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[AArch64] Relax long branch veneer insertion for non STT_FUNC symbol

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2f340668a9a7c00f8813b097b157b07fba8cfa82>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21  9:57 [binutils-gdb] Convert macros in elf-linux-core.h to inline functions sergiodj+buildbot
@ 2016-01-21 14:05 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 14:05 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2750>

Commit(s) tested:
	aeb7056972f1b383578204b9151b0ae6d8c1df81

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Convert macros in elf-linux-core.h to inline functions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for aeb7056972f1b383578204b9151b0ae6d8c1df81>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21 10:09 [binutils-gdb] Rename elf-linux-psinfo.h to elf-linux-core.h sergiodj+buildbot
@ 2016-01-21 12:44 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 12:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2749>

Commit(s) tested:
	de64ce13a78669f094d6909fce51d210e2f9d2c0

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Rename elf-linux-psinfo.h to elf-linux-core.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for de64ce13a78669f094d6909fce51d210e2f9d2c0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21  9:40 [binutils-gdb] bfd/configure reorganisation sergiodj+buildbot
@ 2016-01-21 10:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21 10:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2748>

Commit(s) tested:
	c603b11becccfc593ca590c3129d00c2289359b8

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	bfd/configure reorganisation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c603b11becccfc593ca590c3129d00c2289359b8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-21  8:17 [binutils-gdb] Detect the arm/thumb mode of code SIGRETURN or RT_SIGRETURN returns to sergiodj+buildbot
@ 2016-01-21  9:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-21  9:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2747>

Commit(s) tested:
	f7a6a40dbc279f0a54bdf947077cbad8ad52564c

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Detect the arm/thumb mode of code SIGRETURN or RT_SIGRETURN returns to

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f7a6a40dbc279f0a54bdf947077cbad8ad52564c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-20 19:03 [binutils-gdb] Fix sorting of enum values in FlagEnumerationPrinter sergiodj+buildbot
@ 2016-01-20 21:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 21:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2746>

Commit(s) tested:
	5f5dfff63f31511db45278f97dc22059325ec4d6

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix sorting of enum values in FlagEnumerationPrinter

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5f5dfff63f31511db45278f97dc22059325ec4d6>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-20 18:53 [binutils-gdb] gnu_vector.exp: Respect `should_kfail' for PR 8549 sergiodj+buildbot
@ 2016-01-20 20:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 20:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2745>

Commit(s) tested:
	fd356fa28834fa3a9f22f9157a568264ad045010

Author(s) (in the same order as the commits):
	Andreas Arnez <arnez@linux.vnet.ibm.com>

Subject:
	gnu_vector.exp: Respect `should_kfail' for PR 8549

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for fd356fa28834fa3a9f22f9157a568264ad045010>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-20 17:40 [binutils-gdb] Fix missing IPA lib in tspeed.exp in some configurations sergiodj+buildbot
@ 2016-01-20 18:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 18:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2744>

Commit(s) tested:
	9df22175e153e1a8784afb85fc24983adf346171

Author(s) (in the same order as the commits):
	Antoine Tremblay <antoine.tremblay@ericsson.com>

Subject:
	Fix missing IPA lib in tspeed.exp in some configurations.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9df22175e153e1a8784afb85fc24983adf346171>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-20 14:43 [binutils-gdb] [AArch64] Reject invalid immediate operands to MSR UAO sergiodj+buildbot
@ 2016-01-20 15:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 15:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2743>

Commit(s) tested:
	0bff6e2d6942690d81ce1f33728de07835b0f5b7

Author(s) (in the same order as the commits):
	Matthew Wahab <matthew.wahab@arm.com>

Subject:
	[AArch64] Reject invalid immediate operands to MSR UAO

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 0bff6e2d6942690d81ce1f33728de07835b0f5b7>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-20 13:05 [binutils-gdb] Add support for an ARM specific 'y' section attribute flag to mark the section as NOREAD sergiodj+buildbot
@ 2016-01-20 14:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 14:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2742>

Commit(s) tested:
	91f68a68f992e3f6c3da26c616b5257230bd1eec

Author(s) (in the same order as the commits):
	Mickael Guene <mickael.guene@st.com>

Subject:
	Add support for an ARM specific 'y' section attribute flag to mark the section as NOREAD.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 91f68a68f992e3f6c3da26c616b5257230bd1eec>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-20  4:14 [binutils-gdb] minor reformatting in printcmd.c::print_scalar_formatted sergiodj+buildbot
@ 2016-01-20 11:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 11:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2741>

Commit(s) tested:
	be56871ee8f65c51b9eee611532ed036a71a72e0

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	minor reformatting in printcmd.c::print_scalar_formatted

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for be56871ee8f65c51b9eee611532ed036a71a72e0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 23:43 [binutils-gdb] Use a separate variable for the size passed to sysctl sergiodj+buildbot
@ 2016-01-20 10:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20 10:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2740>

Commit(s) tested:
	f2feec9809edbeeee0bb5b036e4ae25f9c37cd14

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Use a separate variable for the size passed to sysctl.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f2feec9809edbeeee0bb5b036e4ae25f9c37cd14>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 18:00 [binutils-gdb] Dump register notes for each thread when generating a FreeBSD core sergiodj+buildbot
@ 2016-01-20  8:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  8:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2739>

Commit(s) tested:
	20a0aab3ed0f4bb5c304e560751b09b7b82a3e65

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Dump register notes for each thread when generating a FreeBSD core.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 20a0aab3ed0f4bb5c304e560751b09b7b82a3e65>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 17:51 [binutils-gdb] Add support for LWP-based threads on FreeBSD sergiodj+buildbot
@ 2016-01-20  7:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  7:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2738>

Commit(s) tested:
	6e9567fe2ab39d1de89ecc5105c17443b66c9b48

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Add support for LWP-based threads on FreeBSD.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 6e9567fe2ab39d1de89ecc5105c17443b66c9b48>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 17:43 [binutils-gdb] Use LWP IDs with ptrace register requests on FreeBSD sergiodj+buildbot
@ 2016-01-20  6:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  6:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2737>

Commit(s) tested:
	94309df7aa9ab48bec7fb58fdc1deb26e24fc4c1

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Use LWP IDs with ptrace register requests on FreeBSD.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 94309df7aa9ab48bec7fb58fdc1deb26e24fc4c1>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 17:34 [binutils-gdb] Display per-thread information for threads in FreeBSD cores sergiodj+buildbot
@ 2016-01-20  4:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  4:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2736>

Commit(s) tested:
	791174281c341539fab650bd934cc0060b7c9720

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Display per-thread information for threads in FreeBSD cores.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 791174281c341539fab650bd934cc0060b7c9720>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 17:26 [binutils-gdb] Add support for extracting thread names from cores sergiodj+buildbot
@ 2016-01-20  3:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  3:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2735>

Commit(s) tested:
	4dfc5dbc4e1b267d440dd515a42fe6fd96a8d860

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Add support for extracting thread names from cores.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4dfc5dbc4e1b267d440dd515a42fe6fd96a8d860>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 17:18 [binutils-gdb] Add a pseudosection for the NT_FREEBSD_THRMISC note sergiodj+buildbot
@ 2016-01-20  2:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  2:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2734>

Commit(s) tested:
	5b2c414df12bb61ab1e40099b92fc8f00983b930

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Add a pseudosection for the NT_FREEBSD_THRMISC note.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5b2c414df12bb61ab1e40099b92fc8f00983b930>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 17:09 [binutils-gdb] Add support to readelf for reading FreeBSD ELF core notes sergiodj+buildbot
@ 2016-01-20  0:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-20  0:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2733>

Commit(s) tested:
	f4ddf30f1108b2c0b3eee5677c912383ac903256

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Add support to readelf for reading FreeBSD ELF core notes.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f4ddf30f1108b2c0b3eee5677c912383ac903256>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 16:43 [binutils-gdb] Fix enum flag with Python 3 sergiodj+buildbot
@ 2016-01-19 23:34 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 23:34 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2732>

Commit(s) tested:
	10e3ed9029dc0b6eafcd991d9f292fc079f80cf5

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@polymtl.ca>

Subject:
	Fix enum flag with Python 3

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 10e3ed9029dc0b6eafcd991d9f292fc079f80cf5>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 16:35 [binutils-gdb] testsuite: Factor out --status in DO_RUNTEST sergiodj+buildbot
@ 2016-01-19 22:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 22:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2731>

Commit(s) tested:
	41d1845edace3cf5dabd0aa7fa376b801fd5f675

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	testsuite: Factor out --status in DO_RUNTEST

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 41d1845edace3cf5dabd0aa7fa376b801fd5f675>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 16:07 [binutils-gdb] testsuite: Add --status to runtest invocation sergiodj+buildbot
@ 2016-01-19 20:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 20:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2730>

Commit(s) tested:
	10eadbcc2866f11bd93ef379c76524521abdc218

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	testsuite: Add --status to runtest invocation

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 10eadbcc2866f11bd93ef379c76524521abdc218>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 15:58 [binutils-gdb] testsuite: Make check-parallel return non-zero if a test failed sergiodj+buildbot
@ 2016-01-19 19:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 19:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2729>

Commit(s) tested:
	bef95aacb8501edb086381b3d413485d732f00f3

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	testsuite: Make check-parallel return non-zero if a test failed

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bef95aacb8501edb086381b3d413485d732f00f3>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 15:50 [binutils-gdb] Fix detection of "r_fs" and "r_gs" on FreeBSD sergiodj+buildbot
@ 2016-01-19 18:11 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 18:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2728>

Commit(s) tested:
	a6e69c1f1de84549d99792031dd05d5ba70bd8a5

Author(s) (in the same order as the commits):
	John Baldwin <jhb@FreeBSD.org>

Subject:
	Fix detection of "r_fs" and "r_gs" on FreeBSD.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a6e69c1f1de84549d99792031dd05d5ba70bd8a5>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 15:37 [binutils-gdb] Add PIC and TLS support to the ARC target sergiodj+buildbot
@ 2016-01-19 16:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 16:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2727>

Commit(s) tested:
	34e967a5f3ac5fd0353731a259e358d462823290

Author(s) (in the same order as the commits):
	Miranda Cupertino <Cupertino.Miranda@synopsys.com>

Subject:
	Add PIC and TLS support to the ARC target.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 34e967a5f3ac5fd0353731a259e358d462823290>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-19 12:38 [binutils-gdb] Limit breakpoint re-set to the current program space sergiodj+buildbot
@ 2016-01-19 15:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 15:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2726>

Commit(s) tested:
	c2f4122d5cc2a21a441470336c8637b6a6965c6e

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Limit breakpoint re-set to the current program space

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c2f4122d5cc2a21a441470336c8637b6a6965c6e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
       [not found] <bd0a71fa16f668341a9361c695bc3ca44d27b322@gdb-build>
@ 2016-01-19 13:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19 13:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2725>

Commit(s) tested:
	bd0a71fa16f668341a9361c695bc3ca44d27b322

Author(s) (in the same order as the commits):
	Marcin Kościelnicki <koriakin@0x04.net>

Subject:
	testsuite/gdb.trace: Fix expected message on continue.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bd0a71fa16f668341a9361c695bc3ca44d27b322>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 22:31 [binutils-gdb] MIPS: Remove remnants of 48-bit microMIPS instruction support sergiodj+buildbot
@ 2016-01-19  2:40 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19  2:40 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2724>

Commit(s) tested:
	100b4f2e9f65565e3e3e484162c4474effc54be8

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS: Remove remnants of 48-bit microMIPS instruction support

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 100b4f2e9f65565e3e3e484162c4474effc54be8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 22:01 [binutils-gdb] MIPS: Only build microMIPS specific simulator functions if microMIPS support is required sergiodj+buildbot
@ 2016-01-19  1:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19  1:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2723>

Commit(s) tested:
	3d304f48cafbff4b7a1c0a9d338fb20aa4e4934b

Author(s) (in the same order as the commits):
	Andrew Bennett <andrew.bennett@imgtec.com>

Subject:
	MIPS: Only build microMIPS specific simulator functions if microMIPS support is required.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3d304f48cafbff4b7a1c0a9d338fb20aa4e4934b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 21:22 [binutils-gdb] MIPS: Fix microMIPS instruction size determination sergiodj+buildbot
@ 2016-01-19  0:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-19  0:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2722>

Commit(s) tested:
	3f7f365076a112313870e2a321452bfda6d40914

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS: Fix microMIPS instruction size determination

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3f7f365076a112313870e2a321452bfda6d40914>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 17:08 [binutils-gdb] testsuite: Remove unused global references in gdb_test sergiodj+buildbot
@ 2016-01-18 22:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 22:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2721>

Commit(s) tested:
	8bcbad33671aa67a0079fe4f8f448458de8cc05f

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	testsuite: Remove unused global references in gdb_test

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8bcbad33671aa67a0079fe4f8f448458de8cc05f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 16:11 [binutils-gdb] Use a 32-bit value to hold the section number in the internal COFF symbol structure sergiodj+buildbot
@ 2016-01-18 21:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 21:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2720>

Commit(s) tested:
	9ae678af999b8a692c4e6efbe493f39f0085d149

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Use a 32-bit value to hold the section number in the internal COFF symbol structure.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9ae678af999b8a692c4e6efbe493f39f0085d149>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 16:03 [binutils-gdb] Fix PR threads/19422 - show which thread caused stop sergiodj+buildbot
@ 2016-01-18 19:56 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 19:56 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2719>

Commit(s) tested:
	f303dbd60d9c7984832446eeb9d4e4d89703c615

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR threads/19422 - show which thread caused stop

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f303dbd60d9c7984832446eeb9d4e4d89703c615>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 15:19 [binutils-gdb] Replace some $ARCH_{get, set}_pc with linux_{get, set}_pc_64bit sergiodj+buildbot
@ 2016-01-18 18:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 18:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2718>

Commit(s) tested:
	6f69e520676f5f434cf43c250865036b3d516429

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Replace some $ARCH_{get,set}_pc with linux_{get,set}_pc_64bit

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 6f69e520676f5f434cf43c250865036b3d516429>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 15:11 [binutils-gdb] Replace some $ARCH_{get, set}_pc with linux_{get, set}_pc_32bit sergiodj+buildbot
@ 2016-01-18 17:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 17:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2717>

Commit(s) tested:
	276d4552dfc2dc3906fa2bd8690ea85b3d8ec055

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Replace some $ARCH_{get,set}_pc with linux_{get,set}_pc_32bit

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 276d4552dfc2dc3906fa2bd8690ea85b3d8ec055>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 14:40 [binutils-gdb] [testsuite] @progbits -> %progbits sergiodj+buildbot
@ 2016-01-18 15:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 15:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2716>

Commit(s) tested:
	b27896961a641e92a642b352627208233dfeb7f1

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[testsuite] @progbits -> %progbits

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b27896961a641e92a642b352627208233dfeb7f1>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 12:05 [binutils-gdb] Provide AC_PROG_LEX that copes with LEX=missing from top-level sergiodj+buildbot
@ 2016-01-18 14:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 14:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2715>

Commit(s) tested:
	3d961d0d3a797b4d463024a11131e96c213dee27

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Provide AC_PROG_LEX that copes with LEX=missing from top-level

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3d961d0d3a797b4d463024a11131e96c213dee27>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-18 11:57 [binutils-gdb] Fix gdbserver build failure on targets without fork sergiodj+buildbot
@ 2016-01-18 13:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-18 13:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2714>

Commit(s) tested:
	eb0edac83f82516bbbd5a0412bbdf7fd27c687f2

Author(s) (in the same order as the commits):
	Gary Benson <gbenson@redhat.com>

Subject:
	Fix gdbserver build failure on targets without fork

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for eb0edac83f82516bbbd5a0412bbdf7fd27c687f2>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-17  7:04 [binutils-gdb] GDB SIGSEGV opening a Fortran program compiled with ifort sergiodj+buildbot
@ 2016-01-17 10:59 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-17 10:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2713>

Commit(s) tested:
	dc365182240722969f044918ecd3cab00da55502

Author(s) (in the same order as the commits):
	Jonas Hahnfeld <Hahnfeld@itc.rwth-aachen.de>

Subject:
	GDB SIGSEGV opening a Fortran program compiled with ifort

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for dc365182240722969f044918ecd3cab00da55502>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-17  6:17 [binutils-gdb] fix gdb version parsing in src-release.sh sergiodj+buildbot
@ 2016-01-17  9:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-17  9:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2712>

Commit(s) tested:
	b677098d4e086c093554a064076e021fec0399e8

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	fix gdb version parsing in src-release.sh

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b677098d4e086c093554a064076e021fec0399e8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-17  6:14 [binutils-gdb] Minor comment fixes in sim/common/sim-fpu.c sergiodj+buildbot
@ 2016-01-17  8:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-17  8:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2711>

Commit(s) tested:
	f749ed6079486300a65d7407e9fa3a7a296827f6

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Minor comment fixes in sim/common/sim-fpu.c.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f749ed6079486300a65d7407e9fa3a7a296827f6>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-17  5:43 [binutils-gdb] minor reformatting in sim/common/sim-fpu.c sergiodj+buildbot
@ 2016-01-17  6:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-17  6:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2710>

Commit(s) tested:
	3c8e93b7fab5b9d8ddb786772ab00d65ec127159

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	minor reformatting in sim/common/sim-fpu.c.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3c8e93b7fab5b9d8ddb786772ab00d65ec127159>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-17  3:05 [binutils-gdb] Regen configure sergiodj+buildbot
@ 2016-01-17  4:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-17  4:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2709>

Commit(s) tested:
	5c14705fb3dfb359235314f22392e7a5ce6d4085

Author(s) (in the same order as the commits):
	Alan Modra <amodra@gmail.com>

Subject:
	Regen configure

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5c14705fb3dfb359235314f22392e7a5ce6d4085>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-15 22:55 [binutils-gdb] Fix phony_iconv wide character support sergiodj+buildbot
@ 2016-01-16  1:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-16  1:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2708>

Commit(s) tested:
	f74f61cbf72dc158832d81d6ecd6f970f93798cc

Author(s) (in the same order as the commits):
	Sandra Loosemore <sandra@codesourcery.com>

Subject:
	Fix phony_iconv wide character support.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f74f61cbf72dc158832d81d6ecd6f970f93798cc>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-15 22:25 [binutils-gdb] Star wildcard ranges (e.g., "info thread 2.*") sergiodj+buildbot
@ 2016-01-16  0:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-16  0:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2707>

Commit(s) tested:
	71ef29a86b252a4780517fc9b2bf9f7d3dd2d991

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Star wildcard ranges (e.g., "info thread 2.*")

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 71ef29a86b252a4780517fc9b2bf9f7d3dd2d991>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-15 21:59 [binutils-gdb] Fix "thread apply $conv_var" and misc other related problems sergiodj+buildbot
@ 2016-01-15 23:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-15 23:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2706>

Commit(s) tested:
	3f5b7598805c8253c43c989a540a2408c8b685ad

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix "thread apply $conv_var" and misc other related problems

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 3f5b7598805c8253c43c989a540a2408c8b685ad>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-14 16:27 [binutils-gdb] Fix display of RL78 MOVW instructions that use the stack pointer sergiodj+buildbot
@ 2016-01-14 17:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-14 17:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2705>

Commit(s) tested:
	4d82fe66e8d38b20ad429cb99a99ed8741336d72

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Fix display of RL78 MOVW instructions that use the stack pointer.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4d82fe66e8d38b20ad429cb99a99ed8741336d72>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-14 14:57 [binutils-gdb] [ARM] Remove field syscall_next_pc in struct gdbarch_tdep sergiodj+buildbot
@ 2016-01-14 16:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-14 16:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2704>

Commit(s) tested:
	e7cf25a8ab54cd02b48e7443ef25764475f02315

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Remove field syscall_next_pc in struct gdbarch_tdep

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e7cf25a8ab54cd02b48e7443ef25764475f02315>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-14 12:30 [binutils-gdb] Fix C++ build error by casting void * sergiodj+buildbot
@ 2016-01-14 13:51 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-14 13:51 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2703>

Commit(s) tested:
	c0518081f09298c67d1e74e0cc592fde8e0c6571

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Fix C++ build error by casting void *

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c0518081f09298c67d1e74e0cc592fde8e0c6571>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-14 11:03 [binutils-gdb] [AArch64] Fix missing architecture checks for ARMv8.2 system registers sergiodj+buildbot
@ 2016-01-14 12:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-14 12:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2702>

Commit(s) tested:
	651657fa61aa0a2946d56063295a7ce8d73f803b

Author(s) (in the same order as the commits):
	Matthew Wahab <matthew.wahab@arm.com>

Subject:
	[AArch64] Fix missing architecture checks for ARMv8.2 system registers.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 651657fa61aa0a2946d56063295a7ce8d73f803b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-14  9:39 [binutils-gdb] [ARM] Make thumb2_breakpoint static again sergiodj+buildbot
@ 2016-01-14 11:00 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-14 11:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2701>

Commit(s) tested:
	1b451dda5f8905b26bafafe00423335d4fffe8dd

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM] Make thumb2_breakpoint static again

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1b451dda5f8905b26bafafe00423335d4fffe8dd>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 18:04 [binutils-gdb] MAINTAINERS: Add Andreas Arnez as s390 target maintainer sergiodj+buildbot
@ 2016-01-14  0:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-14  0:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2700>

Commit(s) tested:
	bc06e0b148dfc4f2e52003a17d48463150f72e7b

Author(s) (in the same order as the commits):
	Ulrich Weigand <ulrich.weigand@de.ibm.com>

Subject:
	MAINTAINERS: Add Andreas Arnez as s390 target maintainer.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bc06e0b148dfc4f2e52003a17d48463150f72e7b>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 16:19 [binutils-gdb] Read instruction with byte_order_for_code sergiodj+buildbot
@ 2016-01-13 23:10 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 23:10 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2699>

Commit(s) tested:
	4e7b8beaa3b7b9ac8577b10afa9d58bb9d453b08

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Read instruction with byte_order_for_code

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4e7b8beaa3b7b9ac8577b10afa9d58bb9d453b08>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:42 [binutils-gdb] Add $_gthread convenience variable sergiodj+buildbot
@ 2016-01-13 21:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 21:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2698>

Commit(s) tested:
	663f6d42f47265d2deaa86c8a976e658fb13f820

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Add $_gthread convenience variable

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 663f6d42f47265d2deaa86c8a976e658fb13f820>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:41 [binutils-gdb] Implement "info threads -gid" sergiodj+buildbot
@ 2016-01-13 20:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 20:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2697>

Commit(s) tested:
	c84f6bbfe50ff13928360d3cc349d7c553867ce6

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Implement "info threads -gid"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c84f6bbfe50ff13928360d3cc349d7c553867ce6>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:40 [binutils-gdb] Add Python InferiorThread.global_num attribute sergiodj+buildbot
@ 2016-01-13 19:07 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 19:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2696>

Commit(s) tested:
	22a0232400ea09c57ab70d97cffc1f25e6320da7

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Add Python InferiorThread.global_num attribute

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 22a0232400ea09c57ab70d97cffc1f25e6320da7>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:39 [binutils-gdb] Per-inferior/Inferior-qualified thread IDs sergiodj+buildbot
@ 2016-01-13 17:46 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 17:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2695>

Commit(s) tested:
	5d5658a1d3c3eb2a09c03f2f0662a1c01963c869

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Per-inferior/Inferior-qualified thread IDs

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5d5658a1d3c3eb2a09c03f2f0662a1c01963c869>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:38 [binutils-gdb] Centralize thread ID printing sergiodj+buildbot
@ 2016-01-13 16:25 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 16:25 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2694>

Commit(s) tested:
	43792cf0de3a49fb871d432343672bdf16270e99

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Centralize thread ID printing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 43792cf0de3a49fb871d432343672bdf16270e99>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:36 [binutils-gdb] Add Python InferiorThread.inferior attribute sergiodj+buildbot
@ 2016-01-13 15:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 15:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2693>

Commit(s) tested:
	8465445732dc04c3fb6cf954274e12d06b274f08

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Add Python InferiorThread.inferior attribute

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8465445732dc04c3fb6cf954274e12d06b274f08>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 11:35 [binutils-gdb] Add a new $_inferior convenience variable sergiodj+buildbot
@ 2016-01-13 13:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 13:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2692>

Commit(s) tested:
	e3940304fe75c91f99e260a89fe8c45ece7e373f

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Add a new $_inferior convenience variable

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e3940304fe75c91f99e260a89fe8c45ece7e373f>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-13 10:52 [binutils-gdb] Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition sergiodj+buildbot
@ 2016-01-13 12:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13 12:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2691>

Commit(s) tested:
	a911d87ad714cbfbbc5c5752cb8b445a7e70196c

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for a911d87ad714cbfbbc5c5752cb8b445a7e70196c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 20:34 [binutils-gdb] Implement 'catch syscall' for gdbserver sergiodj+buildbot
@ 2016-01-13  5:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13  5:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2690>

Commit(s) tested:
	82075af2c14b1f8a54fa5796fb63f7ef23f98d9d

Author(s) (in the same order as the commits):
	Josh Stone <jistone@redhat.com>

Subject:
	Implement 'catch syscall' for gdbserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 82075af2c14b1f8a54fa5796fb63f7ef23f98d9d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 16:49 [binutils-gdb] Sync top-level btool.m4 with GCC sergiodj+buildbot
@ 2016-01-13  4:24 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13  4:24 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2689>

Commit(s) tested:
	1985dc2d048a4134f20dc9cda61255eb33289476

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Sync top-level btool.m4 with GCC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1985dc2d048a4134f20dc9cda61255eb33289476>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 16:46 [binutils-gdb] [ARM] Support ARMv8.2 RAS extension sergiodj+buildbot
@ 2016-01-13  3:03 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13  3:03 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2688>

Commit(s) tested:
	105bde5771c1c1b26b69e3623c88f3caafa3a480

Author(s) (in the same order as the commits):
	Matthew Wahab <matthew.wahab@arm.com>

Subject:
	[ARM] Support ARMv8.2 RAS extension.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 105bde5771c1c1b26b69e3623c88f3caafa3a480>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 16:41 [binutils-gdb] Add cantunwind when unwind info does not match start of section sergiodj+buildbot
@ 2016-01-13  1:42 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13  1:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2687>

Commit(s) tested:
	ac06903dcff237777c8d507a03aafd79c84129ae

Author(s) (in the same order as the commits):
	Yury Usishchev <y.usishchev@samsung.com>

Subject:
	Add cantunwind when unwind info does not match start of section.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ac06903dcff237777c8d507a03aafd79c84129ae>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 16:37 [binutils-gdb] Sync top-level Makefile.def with GCC sergiodj+buildbot
@ 2016-01-13  0:22 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-13  0:22 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2686>

Commit(s) tested:
	ce5e165eae8925f64da52172f3e67ad8010a1aa0

Author(s) (in the same order as the commits):
	H.J. Lu <hjl.tools@gmail.com>

Subject:
	Sync top-level Makefile.def with GCC

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ce5e165eae8925f64da52172f3e67ad8010a1aa0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 16:34 [binutils-gdb] Fix invalid conversion from void * to gdb_byte * sergiodj+buildbot
@ 2016-01-12 23:01 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 23:01 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2685>

Commit(s) tested:
	d18547d8b08615a58db18ad3e43f721dc92ae298

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Fix invalid conversion from void * to gdb_byte *

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for d18547d8b08615a58db18ad3e43f721dc92ae298>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 15:45 [binutils-gdb] gdbserver: use the new gdb warning helpers sergiodj+buildbot
@ 2016-01-12 21:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 21:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2684>

Commit(s) tested:
	8f13a3ce8afc1144169a14c7704689e263316e70

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	gdbserver: use the new gdb warning helpers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 8f13a3ce8afc1144169a14c7704689e263316e70>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 15:44 [binutils-gdb] gdbserver: fix various warnings sergiodj+buildbot
@ 2016-01-12 20:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 20:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2683>

Commit(s) tested:
	5b3da067f0893be637f9e992b409e36682ea081a

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	gdbserver: fix various warnings

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5b3da067f0893be637f9e992b409e36682ea081a>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 15:22 [binutils-gdb] Change function signature passed to clone sergiodj+buildbot
@ 2016-01-12 18:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 18:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2682>

Commit(s) tested:
	ba4dd7c4a1d99c62a1c2edd68f511a82f8fe041e

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Change function signature passed to clone

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ba4dd7c4a1d99c62a1c2edd68f511a82f8fe041e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 15:09 [binutils-gdb] Remove trademark acknowledgements throughout sergiodj+buildbot
@ 2016-01-12 17:06 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 17:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2681>

Commit(s) tested:
	bc504a311794145e7aef2011f31ea87aa64bea4c

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Remove trademark acknowledgements throughout

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bc504a311794145e7aef2011f31ea87aa64bea4c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 13:13 [binutils-gdb] Test gdb.base/random-signal.exp with "attach" sergiodj+buildbot
@ 2016-01-12 14:43 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 14:43 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2680>

Commit(s) tested:
	e46eeeddfb308cacd863f11a433c10ff1d403827

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Test gdb.base/random-signal.exp with "attach"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e46eeeddfb308cacd863f11a433c10ff1d403827>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12 12:01 [binutils-gdb] Hurd: Make gdb/reply_mig_hack.awk script compatible to "mawk" sergiodj+buildbot
@ 2016-01-12 13:23 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12 13:23 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2679>

Commit(s) tested:
	5eddd57823971bdb54f957d10c11ff3fc9f97b1e

Author(s) (in the same order as the commits):
	Thomas Schwinge <thomas@codesourcery.com>

Subject:
	Hurd: Make gdb/reply_mig_hack.awk script compatible to "mawk"

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5eddd57823971bdb54f957d10c11ff3fc9f97b1e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12  6:46 [binutils-gdb] sim: mips: workaround 32-bit addr sign extensions sergiodj+buildbot
@ 2016-01-12  8:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12  8:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2678>

Commit(s) tested:
	b36d953bced0a4fecdde1823abac70ed7038ee95

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: mips: workaround 32-bit addr sign extensions

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b36d953bced0a4fecdde1823abac70ed7038ee95>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-12  1:37 [binutils-gdb] Reapply: List inferiors/threads/pspaces in ascending order sergiodj+buildbot
@ 2016-01-12  2:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12  2:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2677>

Commit(s) tested:
	b05b120205e697db6291abb95a8cd2be054f99e9

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Reapply: List inferiors/threads/pspaces in ascending order

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b05b120205e697db6291abb95a8cd2be054f99e9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11 21:31 [binutils-gdb] testsuite: i386 regression for funcargs.exp sergiodj+buildbot
@ 2016-01-12  1:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-12  1:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2676>

Commit(s) tested:
	01d8c27e4f77375c0e157d115266129b76ff6734

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: i386 regression for funcargs.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 01d8c27e4f77375c0e157d115266129b76ff6734>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11 21:25 [binutils-gdb] testsuite: Regression for foll-vfork.exp sergiodj+buildbot
@ 2016-01-11 23:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11 23:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2675>

Commit(s) tested:
	9a70630256e21a7b86344d555dbe39407e998f91

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: Regression for foll-vfork.exp

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 9a70630256e21a7b86344d555dbe39407e998f91>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11 21:16 [binutils-gdb] testsuite: Fix false FAILs on too long base directory sergiodj+buildbot
@ 2016-01-11 22:38 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11 22:38 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2674>

Commit(s) tested:
	c0ecb95f3dc0c3e8d1545f0a37c0c3e537e1ea96

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	testsuite: Fix false FAILs on too long base directory

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for c0ecb95f3dc0c3e8d1545f0a37c0c3e537e1ea96>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11 19:13 [binutils-gdb] gdb: split out warnings helpers sergiodj+buildbot
@ 2016-01-11 20:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11 20:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2673>

Commit(s) tested:
	b835bb5265d614fd8a4759f284b987b365292c36

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	gdb: split out warnings helpers

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b835bb5265d614fd8a4759f284b987b365292c36>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11 18:06 [binutils-gdb] Delete opcodes that have been removed from ISA 3.0 sergiodj+buildbot
@ 2016-01-11 19:19 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11 19:19 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2672>

Commit(s) tested:
	afa8d4054b8e0b1384f2d07f1c15163c0699d660

Author(s) (in the same order as the commits):
	Peter Bergner <bergner@vnet.ibm.com>

Subject:
	Delete opcodes that have been removed from ISA 3.0.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for afa8d4054b8e0b1384f2d07f1c15163c0699d660>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11 11:18 [binutils-gdb] Import changes made to files shared with the FSF GCC project sergiodj+buildbot
@ 2016-01-11 12:31 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11 12:31 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2671>

Commit(s) tested:
	4849dfd8f454b9c595e6ee7477f6b7b25c31a499

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	Import changes made to files shared with the FSF GCC project.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4849dfd8f454b9c595e6ee7477f6b7b25c31a499>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11  6:11 [binutils-gdb] sim: config: do not try to align settings sergiodj+buildbot
@ 2016-01-11  7:55 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11  7:55 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2670>

Commit(s) tested:
	34ac507d94ea4af59f931b26e66e7721c967f55c

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: config: do not try to align settings

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 34ac507d94ea4af59f931b26e66e7721c967f55c>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-11  0:08 [binutils-gdb] sim: move many common settings from CPPFLAGS to config.h sergiodj+buildbot
@ 2016-01-11  3:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11  3:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2669>

Commit(s) tested:
	ce39bd389039d99458950b072550ab52f0a07a34

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: move many common settings from CPPFLAGS to config.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for ce39bd389039d99458950b072550ab52f0a07a34>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10 23:15 [binutils-gdb] sim: drop unused SIM_AC_OPTION_PACKAGES sergiodj+buildbot
@ 2016-01-11  2:18 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11  2:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2668>

Commit(s) tested:
	e19418e02e25ae4c62eb95547220897fa6aaf2e0

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: drop unused SIM_AC_OPTION_PACKAGES

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for e19418e02e25ae4c62eb95547220897fa6aaf2e0>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10 22:28 [binutils-gdb] sim: allow the environment configure option everywhere sergiodj+buildbot
@ 2016-01-11  0:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-11  0:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2667>

Commit(s) tested:
	16f7876d71604f835aefe48f0bf230c028c05d99

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: allow the environment configure option everywhere

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 16f7876d71604f835aefe48f0bf230c028c05d99>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10 22:20 [binutils-gdb] sim: allow the assert configure option everywhere sergiodj+buildbot
@ 2016-01-10 23:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-10 23:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2666>

Commit(s) tested:
	35656e95217a20309c0a0f16bf0c89a49a549177

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: allow the assert configure option everywhere

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 35656e95217a20309c0a0f16bf0c89a49a549177>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10  9:12 [binutils-gdb] sim: drop targ-vals.def->nltvals.def indirection sergiodj+buildbot
@ 2016-01-10 14:57 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-10 14:57 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2665>

Commit(s) tested:
	99d8e879938c947588332a9cc579d378ccc2a855

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: drop targ-vals.def->nltvals.def indirection

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 99d8e879938c947588332a9cc579d378ccc2a855>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10  8:59 [binutils-gdb] sim: mips: drop SIM_AC_OPTION_SMP call sergiodj+buildbot
@ 2016-01-10 13:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-10 13:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2664>

Commit(s) tested:
	6d90347b5dcbb10ecb410b1246613c0caf511bd9

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: mips: drop SIM_AC_OPTION_SMP call

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 6d90347b5dcbb10ecb410b1246613c0caf511bd9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10  8:51 [binutils-gdb] sim: allow the inline configure option everywhere sergiodj+buildbot
@ 2016-01-10 12:16 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-10 12:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2663>

Commit(s) tested:
	347fe5bb868b7383d4f6942894b31ecf1da6894e

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: allow the inline configure option everywhere

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 347fe5bb868b7383d4f6942894b31ecf1da6894e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10  8:33 [binutils-gdb] sim: drop --enable-sim-{regparm,stdcall} options sergiodj+buildbot
@ 2016-01-10 10:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-10 10:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2662>

Commit(s) tested:
	0dc73ef7c304e6ffc9ce43b2131c77553a74e1d4

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: drop --enable-sim-{regparm,stdcall} options

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 0dc73ef7c304e6ffc9ce43b2131c77553a74e1d4>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-10  8:17 [binutils-gdb] sim: drop --enable-sim-cflags option sergiodj+buildbot
@ 2016-01-10  9:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-10  9:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2661>

Commit(s) tested:
	22be3fbeaccf50e3c0f58d0f7e9f7ed77effeaab

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: drop --enable-sim-cflags option

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 22be3fbeaccf50e3c0f58d0f7e9f7ed77effeaab>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-09  9:24 [binutils-gdb] sim: stop configuring common subdir sergiodj+buildbot
@ 2016-01-09 11:36 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-09 11:36 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2660>

Commit(s) tested:
	5295724cdc94a09713b021728b02163dad128e9e

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: stop configuring common subdir

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5295724cdc94a09713b021728b02163dad128e9e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-09  9:01 [binutils-gdb] sim: drop common/cconfig.h in favor of a single config.h sergiodj+buildbot
@ 2016-01-09 10:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-09 10:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2659>

Commit(s) tested:
	936df7568a0e47547285a0dd57b81643264fef38

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: drop common/cconfig.h in favor of a single config.h

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 936df7568a0e47547285a0dd57b81643264fef38>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-08 19:16 [binutils-gdb] Fix gdb.multi/base.exp testsuite regression sergiodj+buildbot
@ 2016-01-08 20:29 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-08 20:29 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2658>

Commit(s) tested:
	6cfc1fcb515d1ecd8445905b4749b81b3ca69552

Author(s) (in the same order as the commits):
	Jan Kratochvil <jan.kratochvil@redhat.com>

Subject:
	Fix gdb.multi/base.exp testsuite regression

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 6cfc1fcb515d1ecd8445905b4749b81b3ca69552>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-08 15:34 [binutils-gdb] perf testsuite: python 3 fixes sergiodj+buildbot
@ 2016-01-08 16:47 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-08 16:47 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2657>

Commit(s) tested:
	582a1b0064b14cb12b18f48678876d32c59c11c8

Author(s) (in the same order as the commits):
	Simon Marchi <simon.marchi@ericsson.com>

Subject:
	perf testsuite: python 3 fixes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 582a1b0064b14cb12b18f48678876d32c59c11c8>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-08 11:25 [binutils-gdb] Change SIGINT handler for extension languages only when target terminal is ours sergiodj+buildbot
@ 2016-01-08 15:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-08 15:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2656>

Commit(s) tested:
	2f99e8fc9cb84ca80cfca6c119f1f22bbfd2a314

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Change SIGINT handler for extension languages only when target terminal is ours

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2f99e8fc9cb84ca80cfca6c119f1f22bbfd2a314>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-08 11:16 [binutils-gdb] Check input interrupt first when reading packet sergiodj+buildbot
@ 2016-01-08 13:54 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-08 13:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2655>

Commit(s) tested:
	5a0dd67a459338efb77f8d82bb3650d801ff0dd5

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Check input interrupt first when reading packet

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5a0dd67a459338efb77f8d82bb3650d801ff0dd5>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-08 10:52 [binutils-gdb] m68k: fix constraints of move.[bw] for ISA_B/C sergiodj+buildbot
@ 2016-01-08 12:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-08 12:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2654>

Commit(s) tested:
	83c3256ef5afe10625fd55dda2df5fc56b9b7393

Author(s) (in the same order as the commits):
	Andreas Schwab <schwab@linux-m68k.org>

Subject:
	m68k: fix constraints of move.[bw] for ISA_B/C

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 83c3256ef5afe10625fd55dda2df5fc56b9b7393>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-08  9:58 [binutils-gdb] [ARM] PR ld/19368: Add missing relocation type class for R_ARM_IRELATIVE sergiodj+buildbot
@ 2016-01-08 11:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-08 11:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2653>

Commit(s) tested:
	109575d7ebac21a0eb67980001ecd4173d696f88

Author(s) (in the same order as the commits):
	Jiong Wang <jiong.wang@arm.com>

Subject:
	[ARM] PR ld/19368: Add missing relocation type class for R_ARM_IRELATIVE

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 109575d7ebac21a0eb67980001ecd4173d696f88>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-07 19:37 [binutils-gdb] MIPS: Complete `status' to `err' renaming in `mips_breakpoint_from_pc' sergiodj+buildbot
@ 2016-01-07 20:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-07 20:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2652>

Commit(s) tested:
	5dd0563088b3ca9f5fd66daa0ffe823b60e4b92e

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS: Complete `status' to `err' renaming in `mips_breakpoint_from_pc'

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 5dd0563088b3ca9f5fd66daa0ffe823b60e4b92e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-07  3:07 [binutils-gdb] sim: config: drop use of __DATE__/__TIME__ sergiodj+buildbot
@ 2016-01-07  5:33 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-07  5:33 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2651>

Commit(s) tested:
	b900245c3b92fc460a3f7fa17d14eb08f9ab4c76

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: config: drop use of __DATE__/__TIME__

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b900245c3b92fc460a3f7fa17d14eb08f9ab4c76>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-07  2:58 [binutils-gdb] sim: sim_{create_inferior, open, parse_args}: constify argv/env slightly sergiodj+buildbot
@ 2016-01-07  4:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-07  4:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2650>

Commit(s) tested:
	2e3d4f4d5d386995e99d035354a9e411d1dc0331

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: sim_{create_inferior,open,parse_args}: constify argv/env slightly

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 2e3d4f4d5d386995e99d035354a9e411d1dc0331>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06 18:52 [binutils-gdb] MIPS/include: opcode/mips.h: Add a summary of MIPS16 operand codes sergiodj+buildbot
@ 2016-01-06 21:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 21:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2649>

Commit(s) tested:
	b31e4803316aa0635a6f9beaeceea3e18dbbe459

Author(s) (in the same order as the commits):
	Maciej W. Rozycki <macro@imgtec.com>

Subject:
	MIPS/include: opcode/mips.h: Add a summary of MIPS16 operand codes

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b31e4803316aa0635a6f9beaeceea3e18dbbe459>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06 15:34 [binutils-gdb] Make {arm,thumb}_get_next_pcs_raw static sergiodj+buildbot
@ 2016-01-06 20:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 20:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2648>

Commit(s) tested:
	f5aa306929127aacf9890a949f9a21b38a0e0e7e

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	Make {arm,thumb}_get_next_pcs_raw static

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for f5aa306929127aacf9890a949f9a21b38a0e0e7e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06 15:10 [binutils-gdb] [ARM/AArch64] Fix -Werror=unused-const-variable warnings in GDBserver sergiodj+buildbot
@ 2016-01-06 18:53 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 18:53 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2647>

Commit(s) tested:
	b2ca446f682854c2b187178358b97174bf313fa7

Author(s) (in the same order as the commits):
	Yao Qi <yao.qi@linaro.org>

Subject:
	[ARM/AArch64] Fix -Werror=unused-const-variable warnings in GDBserver

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b2ca446f682854c2b187178358b97174bf313fa7>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06 14:28 [binutils-gdb] bfd/arc: Add R_ prefix to all relocation names sergiodj+buildbot
@ 2016-01-06 17:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 17:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2646>

Commit(s) tested:
	b05a65d0adb340e4129f62c1d380a09935ee433d

Author(s) (in the same order as the commits):
	Andrew Burgess <andrew.burgess@embecosm.com>

Subject:
	bfd/arc: Add R_ prefix to all relocation names

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b05a65d0adb340e4129f62c1d380a09935ee433d>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06 11:46 [binutils-gdb] Fix gdb.python/py-infthread.exp test message typo sergiodj+buildbot
@ 2016-01-06 16:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 16:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2645>

Commit(s) tested:
	79bc59cb349fdbb8d3fa81804eb121af3c340c22

Author(s) (in the same order as the commits):
	Pedro Alves <palves@redhat.com>

Subject:
	Fix gdb.python/py-infthread.exp test message typo

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 79bc59cb349fdbb8d3fa81804eb121af3c340c22>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06  5:52 [binutils-gdb] Change copyright owner to FSF in sim/testsuite/sim/mips/hilo-hazard-4.s sergiodj+buildbot
@ 2016-01-06 14:52 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 14:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2644>

Commit(s) tested:
	68477034727ad85aeed248ec995da746f7639e53

Author(s) (in the same order as the commits):
	Joel Brobecker <brobecker@adacore.com>

Subject:
	Change copyright owner to FSF in sim/testsuite/sim/mips/hilo-hazard-4.s

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 68477034727ad85aeed248ec995da746f7639e53>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-06  4:40 [binutils-gdb] gdb: change version stamp to git sergiodj+buildbot
@ 2016-01-06 13:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 13:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2643>

Commit(s) tested:
	bf69ad5a189db1dca362723a3b0a7a1b545219a9

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	gdb: change version stamp to git

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for bf69ad5a189db1dca362723a3b0a7a1b545219a9>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 23:03 [binutils-gdb] libiberty: {count, dup, write}argv: constify argv input slightly sergiodj+buildbot
@ 2016-01-06 12:12 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 12:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2642>

Commit(s) tested:
	b36c1ccb1feb678f7279b4a8d66c0125d4295078

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	libiberty: {count,dup,write}argv: constify argv input slightly

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for b36c1ccb1feb678f7279b4a8d66c0125d4295078>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 23:23 [binutils-gdb] libiberty: dupargv: rewrite to use xstrdup sergiodj+buildbot
@ 2016-01-06 10:49 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06 10:49 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2641>

Commit(s) tested:
	203217665139943a4f0d1797b9a5f913b3acf184

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	libiberty: dupargv: rewrite to use xstrdup

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 203217665139943a4f0d1797b9a5f913b3acf184>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 22:29 [binutils-gdb] libiberty: Tweak the documentation of libiberty's xcrc32 function sergiodj+buildbot
@ 2016-01-06  9:28 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06  9:28 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2640>

Commit(s) tested:
	4bec0ef03e91506caf60d8842786b29c2d2ff049

Author(s) (in the same order as the commits):
	Patrick Palka <patrick@parcs.ath.cx>

Subject:
	libiberty: Tweak the documentation of libiberty's xcrc32 function

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 4bec0ef03e91506caf60d8842786b29c2d2ff049>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 22:21 [binutils-gdb] libiberty: fix warnings about left shifting a negative value sergiodj+buildbot
@ 2016-01-06  8:08 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06  8:08 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2639>

Commit(s) tested:
	13b356b2b5c1857490b7911dbbb48e17a3a92b04

Author(s) (in the same order as the commits):
	Nick Clifton <nickc@redhat.com>

Subject:
	libiberty: fix warnings about left shifting a negative value.

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 13b356b2b5c1857490b7911dbbb48e17a3a92b04>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 22:13 [binutils-gdb] gdb: score: drop sim file check sergiodj+buildbot
@ 2016-01-06  6:48 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06  6:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2638>

Commit(s) tested:
	6675033211e145ecd094b6803ed4a3427b3fd21e

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	gdb: score: drop sim file check

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 6675033211e145ecd094b6803ed4a3427b3fd21e>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 21:27 [binutils-gdb] sim: msp430: drop duplicate sim_load_file call sergiodj+buildbot
@ 2016-01-06  5:27 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06  5:27 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2637>

Commit(s) tested:
	402cf0534665db83e19c00f130184e94552a75fb

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: msp430: drop duplicate sim_load_file call

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 402cf0534665db83e19c00f130184e94552a75fb>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 21:02 [binutils-gdb] sim: aarch64: switch to common disassembler tracing sergiodj+buildbot
@ 2016-01-06  3:35 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06  3:35 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2636>

Commit(s) tested:
	1a846c62626357f9e966ef50917dca3a357c9644

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: aarch64: switch to common disassembler tracing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 1a846c62626357f9e966ef50917dca3a357c9644>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

* Failures on Fedora-ppc64le-m64, branch master
  2016-01-05 20:39 [binutils-gdb] sim: bfin: add support disasm tracing sergiodj+buildbot
@ 2016-01-06  2:15 ` sergiodj+buildbot
  0 siblings, 0 replies; 2006+ messages in thread
From: sergiodj+buildbot @ 2016-01-06  2:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-ppc64le-1

Full Build URL:
	<http://gdb-build.sergiodj.net/builders/Fedora-ppc64le-m64/builds/2635>

Commit(s) tested:
	824c862804128f6d31ae5f80fb741d12419da943

Author(s) (in the same order as the commits):
	Mike Frysinger <vapier@gentoo.org>

Subject:
	sim: bfin: add support disasm tracing

Testsuite log (gdb.sum and gdb.log) URL(s):
	<Error fetching commit ID for 824c862804128f6d31ae5f80fb741d12419da943>





^ permalink raw reply	[flat|nested] 2006+ messages in thread

end of thread, other threads:[~2017-12-02  3:15 UTC | newest]

Thread overview: 2006+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-09-19 16:45 [binutils-gdb] Consolidate target_mourn_inferior between GDB and gdbserver sergiodj+buildbot
2016-09-19 16:31 ` Failures on Ubuntu-AArch64-m64, branch master sergiodj+buildbot
2016-09-19 16:49 ` Failures on Debian-s390x-native-gdbserver-m64, " sergiodj+buildbot
2016-09-19 16:50 ` Failures on Fedora-s390x-m64, " sergiodj+buildbot
2016-09-19 17:00 ` Failures on Debian-s390x-m64, " sergiodj+buildbot
2016-09-19 17:06 ` Failures on Debian-i686, " sergiodj+buildbot
2016-09-19 17:15 ` Failures on Debian-x86_64-m64, " sergiodj+buildbot
2016-09-19 17:20 ` Failures on Fedora-x86_64-m32, " sergiodj+buildbot
2016-09-19 17:29 ` Failures on Ubuntu-AArch64-native-gdbserver-m64, " sergiodj+buildbot
2016-09-19 18:37 ` Failures on Fedora-x86_64-cc-with-index, " sergiodj+buildbot
2016-09-19 19:21 ` Failures on Debian-s390x-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-09-19 20:45 ` Failures on Fedora-x86_64-native-gdbserver-m64, " sergiodj+buildbot
2016-09-19 21:14 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-09-19 21:29 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj+buildbot
2016-09-19 22:13 ` Failures on Debian-x86_64-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-09-19 22:20 ` Failures on Fedora-x86_64-m64, " sergiodj+buildbot
2016-09-19 22:54 ` Failures on Fedora-i686, " sergiodj+buildbot
2016-09-20 14:01 ` Failures on Fedora-ppc64be-m64, " sergiodj+buildbot
2016-09-20 16:01 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj+buildbot
2016-09-20 16:18 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-09-20 16:19 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj+buildbot
2016-09-20 17:02 ` Failures on Fedora-ppc64le-m64, " sergiodj+buildbot
2016-09-20 17:04 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj+buildbot
2016-09-20 17:08 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj+buildbot
2016-09-20 17:17 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj+buildbot
  -- strict thread matches above, loose matches on Subject: below --
2017-10-09 18:14 [binutils-gdb] Don't try building gdb against guile-2.2 sergiodj+buildbot
2017-12-02  3:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-09 17:56 [binutils-gdb] S/390: Sync with latest POP - 3 new instructions sergiodj+buildbot
2017-11-29 10:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-09 12:16 [binutils-gdb] Fix gdb.base/print-file-var-main.c value check logic sergiodj+buildbot
2017-11-24  8:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-09  5:11 [binutils-gdb] PR22212, memory leak in nm sergiodj+buildbot
2017-11-19  7:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-07  1:04 [binutils-gdb] x86: Use zero_undefweak in elf_x86_link_hash_entry sergiodj+buildbot
2017-11-12  2:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-07  0:08 [binutils-gdb] x86: Update UNDEFINED_WEAK_RESOLVED_TO_ZERO comments sergiodj+buildbot
2017-11-12 23:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 22:49 [binutils-gdb] Skip gdb.mi/mi-threads-interrupt.exp if nointerrupts sergiodj+buildbot
2017-11-11  5:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 21:43 [binutils-gdb] Account for padding in FreeBSD/mipsn32 NT_PRSTATUS notes sergiodj+buildbot
2017-11-10  9:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 13:38 [binutils-gdb] Move arm.o arm-get-next-pcs.o arm-linux.o to arch/ sergiodj+buildbot
2017-11-08 17:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 12:54 [binutils-gdb] Add "do/while(0); " to COPY_INPUT_RELOC_P/VERIFY_COPY_RELOC sergiodj+buildbot
2017-11-06 21:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 11:06 [binutils-gdb] Fix more GDB build breakage on mingw32 sergiodj+buildbot
2017-11-06  1:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 10:23 [binutils-gdb] Share code updating gdb_target_obs sergiodj+buildbot
2017-11-02 19:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06 10:17 [binutils-gdb] [RFC] Replicate src dir in build dir sergiodj+buildbot
2017-11-01 23:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06  9:53 [binutils-gdb] gdb: Fix decoding of ARM neon memory hint insns sergiodj+buildbot
2017-11-01  1:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06  7:49 [binutils-gdb] x86: Add COPY_INPUT_RELOC_P sergiodj+buildbot
2017-10-29 11:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06  7:36 [binutils-gdb] x86: Add GENERATE_RELATIVE_RELOC_P sergiodj+buildbot
2017-10-26 22:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06  7:30 [binutils-gdb] Add RESOLVED_LOCALLY_P sergiodj+buildbot
2017-10-26  1:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06  7:26 [binutils-gdb] x86: Add NEED_DYNAMIC_RELOCATION_P sergiodj+buildbot
2017-10-25  5:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-06  7:18 [binutils-gdb] x86: Add TLS_TRANSITION_IE_TO_LE_P sergiodj+buildbot
2017-10-24  9:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:35 [binutils-gdb] Fix fork-related regressions on GNU/Linux sergiodj+buildbot
2017-10-22 17:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:18 [binutils-gdb] Clean up some DFP interfaces sergiodj+buildbot
2017-10-20 21:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:18 [binutils-gdb] Remove unused "union agent_val" from ax.h sergiodj+buildbot
2017-10-21 20:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:18 [binutils-gdb] Clean up includes of doublest.h and floatformat.h sergiodj+buildbot
2017-10-20  0:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:00 [binutils-gdb] Add a signal frame unwinder for FreeBSD/mipsn32 sergiodj+buildbot
2017-10-19  2:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:00 [binutils-gdb] Handle FreeBSD-specific AT_EHDRFLAGS and AT_HWCAP auxiliary vector types sergiodj+buildbot
2017-10-17  6:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 17:00 [binutils-gdb] Handle the NT_ARM_VFP core dump note on FreeBSD sergiodj+buildbot
2017-10-18  3:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05 13:02 [binutils-gdb] tile: Dump dynamic relocation info to the map file sergiodj+buildbot
2017-10-16  9:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05  4:45 [binutils-gdb] Update my email address sergiodj+buildbot
2017-10-15  8:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05  1:42 [binutils-gdb] bfd_set_input_error sergiodj+buildbot
2017-10-14 12:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-05  1:09 [binutils-gdb] bfd_error_on_input is for archives sergiodj+buildbot
2017-10-13 15:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-04 23:08 [binutils-gdb] PR21167, relocation sections not included in groups sergiodj+buildbot
2017-10-12  8:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-04 17:39 [binutils-gdb] Fix "Remote 'g' packet reply is too long" problems with multiple inferiors sergiodj+buildbot
2017-10-11 11:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-04 17:39 [binutils-gdb] Redesign mock environment for gdbarch selftests sergiodj+buildbot
2017-10-05 19:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-10-04 16:48 [binutils-gdb] Fix -list-thread-groups --available logic and add test sergiodj+buildbot
2017-10-04 23:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-09-01  5:02 [binutils-gdb] PR gdb/22046: Fix T-stopped detach regression on old Linux kernels sergiodj+buildbot
2017-10-04  6:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-31 22:00 [binutils-gdb] Implement the ability to set/unset environment variables to GDBserver when starting the inferior sergiodj+buildbot
2017-10-03 10:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-31 16:43 [binutils-gdb] Fix buffer read overrun by ensuring that DWARF sections containing strings always end in a NUL byte sergiodj+buildbot
2017-10-02 13:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-31  4:27 [binutils-gdb] PR22048, Incorrect .eh_frame section in libc.so sergiodj+buildbot
2017-09-27 23:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-31  4:05 [binutils-gdb] Add elf64.lo together with elfxx-x86.lo for 64-bit BFD sergiodj+buildbot
2017-09-27  4:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-31  3:19 [binutils-gdb] FT32: Permit R_FT32_18 overflow sergiodj+buildbot
2017-09-25  6:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-31  1:26 [binutils-gdb] bfd_close_all_done calling _close_and_cleanup sergiodj+buildbot
2017-09-24  9:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-30 19:49 [binutils-gdb] x86: Add _bfd_x86_elf_get_synthetic_symtab sergiodj+buildbot
2017-09-23 17:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-30 16:30 [binutils-gdb] x86: Add _bfd_x86_elf_link_hash_table_create sergiodj+buildbot
2017-09-21 19:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-30 15:38 [binutils-gdb] MIPS/BFD: Correct microMIPS cross-mode BAL to JALX relaxation sergiodj+buildbot
2017-09-20 23:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-30 12:51 [binutils-gdb] Remove elf_x86_64_next_tls_desc_index/elf_x86_64_srelplt2 sergiodj+buildbot
2017-09-19  7:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-30 12:05 [binutils-gdb] PowerPC TPREL16_HA/LO reloc optimization sergiodj+buildbot
2017-09-18 11:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-30 11:36 [binutils-gdb] PowerPC64 __tls_get_addr sequence optimization sergiodj+buildbot
2017-09-17 23:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-29 22:11 [binutils-gdb] x86: Re-indent elf32-i386.c/elf64-x86-64.c sergiodj+buildbot
2017-09-15 12:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-29 18:56 [binutils-gdb] x86: Simplify bad return in get_synthetic_symtab sergiodj+buildbot
2017-09-14  1:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-29 18:16 [binutils-gdb] x86: Check valid PLT sections before checking dynamic relocations sergiodj+buildbot
2017-09-12 19:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-29 13:35 [binutils-gdb] Fix simulation of MSP430's open system call sergiodj+buildbot
2017-09-11 21:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-28 23:21 [binutils-gdb] Remove unused _bfd_elf_ifunc_get_synthetic_symtab sergiodj+buildbot
2017-09-10 16:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-28 18:53 [binutils-gdb] x86: Check for valid PLT section size sergiodj+buildbot
2017-09-07  7:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-27 14:46 [binutils-gdb] x86: Initialize def_protected sergiodj+buildbot
2017-09-06  6:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <f1902523c9b7941775a2c64af89de0f111b8924c@gdb-build>
2017-08-27  2:46 ` sergiodj+buildbot
2017-08-26 11:54 [binutils-gdb] PowerPC TPREL reloc handling sergiodj+buildbot
2017-09-04 16:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <74081948353b117fcbe870fc3cc9ebe0f18fdcf8@gdb-build>
2017-08-26 11:48 ` sergiodj+buildbot
2017-08-26  0:39 [binutils-gdb] x86: Remove redundant "symbol" in comments sergiodj+buildbot
2017-09-02 22:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-25  9:18 [binutils-gdb] gdbserver: Rename some functions, thread -> inferior sergiodj+buildbot
2017-09-02  2:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-08-24 21:53 [binutils-gdb] Remove unused function set_inferior_target_data sergiodj+buildbot
2017-09-01  4:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-06 16:16 [binutils-gdb] Regen SRC-POTFILES.in sergiodj+buildbot
2017-08-23 17:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-06 12:43 [binutils-gdb] -Wwrite-strings: More Solaris sergiodj+buildbot
2017-08-20 12:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-06  4:14 [binutils-gdb] ptid_{lwp,tid}_p: Remove unnecessary checks sergiodj+buildbot
2017-08-22 19:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-06  1:31 [binutils-gdb] -Wwrite-strings: execute_command calls with string literals sergiodj+buildbot
2017-08-17  6:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-06  0:12 [binutils-gdb] -Wwrite-strings: More fix-old-Python-API wrappers sergiodj+buildbot
2017-08-14  6:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-05 21:07 [binutils-gdb] -Wwrite-strings: Don't initialize string command variables to empty string sergiodj+buildbot
2017-08-06 10:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-05 20:34 [binutils-gdb] -Wwrite-strings: Constify shell_escape and plug make_command leak sergiodj+buildbot
2017-08-07  7:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-05 15:20 [binutils-gdb] Use frame_unwind_register_value in frame_unwind_register_unsigned sergiodj+buildbot
2017-08-02  4:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-05 14:11 [binutils-gdb] Fix racy test in gdb.threads/thread-specific-bp.exp sergiodj+buildbot
2017-08-01  8:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-05  1:01 [binutils-gdb] Initialize gdb::optional empty payload to quiet false -Wmaybe-uninitialized warnings sergiodj+buildbot
2017-07-29 17:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-04 23:00 [binutils-gdb] Remove support for FreeBSD/alpha sergiodj+buildbot
2017-07-28  1:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-04 21:06 [binutils-gdb] Make sect_offset and cu_offset strong typedefs instead of structs sergiodj+buildbot
2017-07-25 13:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-04 20:48 [binutils-gdb] dwarf2read.c: Make dir_index and file_name_index strong typedefs sergiodj+buildbot
2017-07-24 16:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-04 14:49 [binutils-gdb] remote.c: Use ptid_t instead of struct ptid sergiodj+buildbot
2017-07-18 16:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-04 10:51 [binutils-gdb] Fix null pointer dereferences when using a link built with clang sergiodj+buildbot
2017-07-17 19:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-04-03 16:30 [binutils-gdb] IA16 support sergiodj+buildbot
2017-07-15 19:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-28 20:37 [binutils-gdb] arc: Add prologue analysis sergiodj+buildbot
2017-07-01 22:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-28 18:58 [binutils-gdb] arc: Align internal regnums with architectural regnums sergiodj+buildbot
2017-06-29 11:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-27 22:23 [binutils-gdb] gdbserver: xtensa: support THREADPTR register sergiodj+buildbot
2017-06-28 14:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-27 21:13 [binutils-gdb] gdbserver: xtensa: add call0 support sergiodj+buildbot
2017-06-26  9:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-27 15:29 [binutils-gdb] gdb/cp-name-parser.y: Eliminate make_empty, use cplus_demangle_fill_component sergiodj+buildbot
2017-06-21 21:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-27 11:50 [binutils-gdb] PR21303, objdump doesn't show e200z4 insns sergiodj+buildbot
2017-06-17 18:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-27 11:49 [binutils-gdb] Add minimal support for WebAssembly backend to the BFD library sergiodj+buildbot
2017-06-16  1:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-25 10:49 [binutils-gdb] Remove some unnecessary inferior_ptid setting/restoring when fetching/storing registers sergiodj+buildbot
2017-06-11  8:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-24 21:27 [binutils-gdb] arc/nps400: Add cp16/cp32 instructions to opcodes library sergiodj+buildbot
2017-05-29 22:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-24 16:24 [binutils-gdb] Add rvalue reference tests and docs sergiodj+buildbot
2017-05-25 13:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-24 15:38 [binutils-gdb] Avoid segfault on invalid directory table sergiodj+buildbot
2017-06-12  6:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-24  7:12 [binutils-gdb] Change {lookup,make}_reference_type API sergiodj+buildbot
2017-05-17  9:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-23 16:19 [binutils-gdb] Remove MAX_REGISTER_SIZE from sol-thread.c sergiodj+buildbot
2017-06-10 11:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-23 15:04 [binutils-gdb] Remove AARCH64_RECORD_FAILURE sergiodj+buildbot
2017-06-07 15:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-23  1:42 [binutils-gdb] Add rvalue references to overloading resolution sergiodj+buildbot
2017-05-24 17:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-23  0:29 [binutils-gdb] Support DW_TAG_rvalue_reference type sergiodj+buildbot
2017-05-21 22:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22 23:28 [binutils-gdb] Add ability to return rvalue reference values from value_ref sergiodj+buildbot
2017-05-18  6:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22 20:08 [binutils-gdb] Add DW_OP_GNU_variable_value sergiodj+buildbot
2017-04-15 19:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22 19:22 [binutils-gdb] i386-gnu-nat: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
2017-05-09 10:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22 17:59 [binutils-gdb] hppa-obsd-nat: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
2017-05-06 20:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22 13:04 [binutils-gdb] Fix PR gdb/19637: bound_registers.py: Add support for Python 3 sergiodj+buildbot
2017-04-29 15:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22 12:43 [binutils-gdb] E6500 spr mnemonics sergiodj+buildbot
2017-04-28  6:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22  7:47 [binutils-gdb] Fix expect for gdb.cp/m-static.exp sergiodj+buildbot
2017-04-18  9:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22  3:39 [binutils-gdb] aix-thread: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
2017-04-08 22:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22  2:36 [binutils-gdb] amd64-linux-nat: Use ptid from regcache instead of inferior_ptid sergiodj+buildbot
2017-04-07  4:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22  2:06 [binutils-gdb] Introduce regcache_get_ptid sergiodj+buildbot
2017-04-05 11:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-22  1:38 [binutils-gdb] gdbserver: Use pattern rule for objects from common/ sergiodj+buildbot
2017-03-31  6:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-13 10:26 [binutils-gdb] Rename R_AARCH64_TLSDESC_LD64_LO12_NC to R_AARCH64_TLSDESC_LD64_LO12 and R_AARCH64_TLSDESC_ADD_LO12_NC to R_AARCH64_TLSDESC_ADD_LO12 sergiodj+buildbot
2017-03-24  8:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-09 16:53 [binutils-gdb] Fix compile time warnings about using possibly uninitialised variables in rs6000-core.c sergiodj+buildbot
2017-03-15 13:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-09 16:05 [binutils-gdb] Use CpuCET on rdsspq sergiodj+buildbot
2017-03-14  1:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-09  3:06 [binutils-gdb] Update -maltivec and -mvsx options to only enable their oldest instructions sergiodj+buildbot
2017-03-13  5:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-08 22:52 [binutils-gdb] Avoid unstable test message in gdb.base/step-over-exit.exp sergiodj+buildbot
2017-03-12  9:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-08 20:33 [binutils-gdb] Add support for the new 'lnia' extended mnemonic sergiodj+buildbot
2017-03-11 12:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-08 13:45 [binutils-gdb] "gdb.arch/i386-pkru.exp: probe PKRU support" shouldn't FAIL if not supported sergiodj+buildbot
2017-03-09 15:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-08  2:52 [binutils-gdb] Fix PR tui/21216: TUI line breaks regression sergiodj+buildbot
2017-03-09  3:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-08  0:56 [binutils-gdb] Move TUI testcases to new gdb/testsuite/gdb.tui/ directory sergiodj+buildbot
2017-03-08 19:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-07 21:08 [binutils-gdb] Share gdb/environ.[ch] with gdbserver sergiodj+buildbot
2017-03-08 16:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-07 14:45 [binutils-gdb] Add describing intro comment to gdb.base/tui-layout.exp sergiodj+buildbot
2017-03-07 18:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-05  4:44 [binutils-gdb] Align eh_frame FDEs according to their encoding sergiodj+buildbot
2017-03-05  6:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-03-02  0:24 [binutils-gdb] PowerPC VLE typo fix sergiodj+buildbot
2017-03-02 17:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-28 10:17 [binutils-gdb] x86: fix handling of 64-bit operand size VPCMPESTR{I, M} sergiodj+buildbot
2017-03-01 22:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-28  4:22 [binutils-gdb] PowerPC addpcis fix sergiodj+buildbot
2017-03-01 13:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-28  0:57 [binutils-gdb] MIPS/BFD: Also handle `jalr $0, $25' with R_MIPS_JALR sergiodj+buildbot
2017-03-01  5:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-27 18:58 [binutils-gdb] Use range-based for loop in remote_add_target_side_condition sergiodj+buildbot
2017-02-28 21:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-26  5:34 [binutils-gdb] Add missing smov support, and clean up existing umov support sergiodj+buildbot
2017-02-27 16:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-24 19:18 [binutils-gdb] Add new counter-enable CSRs sergiodj+buildbot
2017-02-26 12:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-23 20:15 [binutils-gdb] S/390: Add support for new cpu architecture - arch12 sergiodj+buildbot
2017-02-25  8:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-23 15:54 [binutils-gdb] Fix usage of inferior_ptid in two thread_alive implementations sergiodj+buildbot
2017-02-24 16:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-23 10:18 [binutils-gdb] x86: drop stray VEX opcode 82 references sergiodj+buildbot
2017-02-24  4:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-22 17:45 [binutils-gdb] Align .gnu_debuglink sections on a 4-byte boundary sergiodj+buildbot
2017-02-23 15:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-21 23:12 [binutils-gdb] PowerPC ld segfault on script discarding dynamic sections sergiodj+buildbot
2017-02-23  3:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-21 15:39 [binutils-gdb] [ppc64] Add POWER8/ISA 2.07 atomic sequences single-stepping support sergiodj+buildbot
2017-02-22 20:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-21 14:17 [binutils-gdb] Fix test names starting with uppercase in gdb.arch/ppc64-atomic-inst.exp sergiodj+buildbot
2017-02-22 15:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-20 20:58 [binutils-gdb] Code cleanup: Split dwarf2_ranges_read to a callback sergiodj+buildbot
2017-02-22  0:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-17 11:43 [binutils-gdb] Add support for Intel PKRU register to GDB and GDBserver sergiodj+buildbot
2017-02-21  0:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-15 21:34 [binutils-gdb] i386: Allow "lea foo@GOT, %reg" in PIC sergiodj+buildbot
2017-02-18 13:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-15 17:26 [binutils-gdb] [AArch64] Add SVE system registers sergiodj+buildbot
2017-02-18  2:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-15 12:11 [binutils-gdb] Fix illegal upper case gdb cmd in chained-calls.exp sergiodj+buildbot
2017-02-17 17:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-14 19:24 [binutils-gdb] Update ppc64_elf_gc_mark_dynamic_ref sergiodj+buildbot
2017-02-16  6:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-14 17:02 [binutils-gdb] python: Implement btrace Python bindings for record history sergiodj+buildbot
2017-02-15 18:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-14 10:42 [binutils-gdb] btrace: Count gaps as one instruction explicitly sergiodj+buildbot
2017-02-14 15:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-13 15:27 [binutils-gdb] Improve load command's help text sergiodj+buildbot
2017-02-13 23:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-11  5:11 [binutils-gdb] Remove unused variable in rust-lang.c sergiodj+buildbot
2017-02-12  9:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-11  0:55 [binutils-gdb] Remove unnecessary local variables sergiodj+buildbot
2017-02-12  0:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-10 20:08 [binutils-gdb] Remove some ui_out-related cleanups from Python sergiodj+buildbot
2017-02-11  4:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-10 18:09 [binutils-gdb] gdb/MAINTAINERS: Update my e-mail address sergiodj+buildbot
2017-02-10 23:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-10  8:52 [binutils-gdb] POWER9 add scv/rfscv instruction support sergiodj+buildbot
2017-02-10 10:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-09 15:56 [binutils-gdb] Fix NULL pointer dereference sergiodj+buildbot
2017-02-09 17:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-08 20:52 [binutils-gdb] Eliminate interp::quiet_p sergiodj+buildbot
2017-02-09  4:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-08 18:32 [binutils-gdb] Command names: make them case sensitive sergiodj+buildbot
2017-02-08 20:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-07 21:40 [binutils-gdb] gdb: fix ARI warning in sparc-tdep.c sergiodj+buildbot
2017-02-07 23:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-07 14:25 [binutils-gdb] bfd: Fix objdump --dynamic-reloc for SPARC 64-bit to show symbol names sergiodj+buildbot
2017-02-07 15:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-06 10:53 [binutils-gdb] [ARC] Provide an interface to decode ARC instructions sergiodj+buildbot
2017-02-07  3:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-06  9:31 [binutils-gdb] [BZ 21005] Add support for Intel 64 rdrand and rdseed record/replay sergiodj+buildbot
2017-02-06 22:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-03  9:19 [binutils-gdb] Fix compile time warning messages when compiling binutils with gcc 7.0.1 sergiodj+buildbot
2017-02-05 22:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-03  1:31 [binutils-gdb] MIPS/BFD: Streamline hash table references in `mips_elf_sort_hash_table' sergiodj+buildbot
2017-02-04 13:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-03  0:38 [binutils-gdb] Fix "maintenance selftest" printing stray instructions sergiodj+buildbot
2017-02-05  5:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-03  0:13 [binutils-gdb] MIPS/BFD: Respect the ELF gABI dynamic symbol table sort requirement sergiodj+buildbot
2017-02-04 21:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-02 23:37 [binutils-gdb] MIPS/BFD: Fix assertion in `mips_elf_sort_hash_table' sergiodj+buildbot
2017-02-04  9:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-02 23:22 [binutils-gdb] BFD: Wrap overlong error handler call line in `elf_gc_sweep' sergiodj+buildbot
2017-02-04  5:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-02 22:23 [binutils-gdb] Move "tee" building down to interpreter::set_logging_proc sergiodj+buildbot
2017-02-04  1:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-02 14:53 [binutils-gdb] Fix "-gdb-set logging redirect on" crash sergiodj+buildbot
2017-02-03 21:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-02 13:57 [binutils-gdb] Tweak pretty_print_disassembler's intro comment sergiodj+buildbot
2017-02-03 17:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-02 12:25 [binutils-gdb] Eliminate make_cleanup_ui_file_delete / make ui_file a class hierarchy sergiodj+buildbot
2017-02-03  9:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-01 16:25 [binutils-gdb] Big-endian targets: Don't ignore offset into DW_OP_implicit_value sergiodj+buildbot
2017-02-02 22:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-01 15:42 [binutils-gdb] btrace, testsuite: fix extended-remote non-stop test sergiodj+buildbot
2017-02-02 10:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-01 15:06 [binutils-gdb] btrace: add unsupported/untested messages when skipping tests sergiodj+buildbot
2017-02-02  6:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-01 13:56 [binutils-gdb] thread: add can_access_registers_ptid sergiodj+buildbot
2017-02-01 21:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-02-01  0:40 [binutils-gdb] gdb/varobj.c: Fix leak sergiodj+buildbot
2017-02-01  6:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-31 23:53 [binutils-gdb] gdb: make_scoped_restore and types convertible to T sergiodj+buildbot
2017-02-01  1:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-27 16:49 [binutils-gdb] amd64-linux: expose system register FS_BASE and GS_BASE for Linux sergiodj+buildbot
2017-01-28 16:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-27 15:16 [binutils-gdb] amd64: remove additional comparison for validity of a register number sergiodj+buildbot
2017-01-28  8:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-27 14:35 [binutils-gdb] gdbserver-amd64: add HAVE_STRUCT_USER_REGS_STRUCT_(GS|FS)_BASE for gdbserver sergiodj+buildbot
2017-01-28  4:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-27  8:31 [binutils-gdb] Fix unused-but-set warning in elf32-cris.c:elf_cris_finish_dynamic_symbol sergiodj+buildbot
2017-01-27 15:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-12  5:21 [binutils-gdb] Use gdbpy_ref in invoke_match_method sergiodj+buildbot
2017-01-16 14:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 19:07 [binutils-gdb] Use gdbpy_enter in py-finishbreakpoint.c sergiodj+buildbot
2017-01-14 11:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 19:03 [binutils-gdb] Use gdbpy_enter in py-xmethod.c sergiodj+buildbot
2017-01-16 18:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 14:43 [binutils-gdb] Use gdbpy_enter in python.c sergiodj+buildbot
2017-01-15  3:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 14:12 [binutils-gdb] Use gdbpy_enter in py-objfile.c sergiodj+buildbot
2017-01-14 20:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 12:51 [binutils-gdb] Use gdbpy_enter in py-cmd.c sergiodj+buildbot
2017-01-14  7:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 11:46 [binutils-gdb] Introduce gdbpy_enter sergiodj+buildbot
2017-01-13 22:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11 11:14 [binutils-gdb] Use gdbpy_ref in py-value.c sergiodj+buildbot
2017-01-13 14:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11  9:54 [binutils-gdb] Use gdbpy_ref in call_doc_function sergiodj+buildbot
2017-01-13  3:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11  8:42 [binutils-gdb] Use gdbpy_ref in gdbpy_string_to_argv sergiodj+buildbot
2017-01-12  2:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11  7:59 [binutils-gdb] Use gdbpy_ref in py-framefilter.c sergiodj+buildbot
2017-01-12 18:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-11  7:18 [binutils-gdb] Change event code to use gdbpy_ref sergiodj+buildbot
2017-01-11 18:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-10 19:51 [binutils-gdb] Don't use elf_i386_eh_frame_plt directly sergiodj+buildbot
2017-01-11  1:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-10 16:47 [binutils-gdb] Change return type of ui_out redirect to void sergiodj+buildbot
2017-01-10 20:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-10  0:02 [binutils-gdb] Fix problems with the implementation of the uzp1 and uzp2 instructions sergiodj+buildbot
2017-01-10  7:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-09 17:05 [binutils-gdb] Speed up objdump when displaying disassembly mixed with line number and source code information sergiodj+buildbot
2017-01-10  0:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-08 10:52 [binutils-gdb] [D] Fix crash when debug expression enabled sergiodj+buildbot
2017-01-09 17:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-06 20:40 [binutils-gdb] Include gdb_proc_service.h in x86-linux-nat.h sergiodj+buildbot
2017-01-09  2:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-06 19:51 [binutils-gdb] Include serial.h in ser-base.h sergiodj+buildbot
2017-01-08 22:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-06 17:58 [binutils-gdb] Include break-common.h in nat/aarch64-linux-hw-point.h sergiodj+buildbot
2017-01-08 11:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-06 15:00 [binutils-gdb] Include ax.h in ax-gdb.h sergiodj+buildbot
2017-01-07 19:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-06 14:17 [binutils-gdb] Update gdb_ptrace.h in HFILES_NO_SRCDIR sergiodj+buildbot
2017-01-07 15:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-05 15:02 [binutils-gdb] Fix ARI warning sergiodj+buildbot
2017-01-07 11:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-05  9:19 [binutils-gdb] Prevent an abort in the FRV disassembler if the target bfd name is unknown sergiodj+buildbot
2017-01-07  7:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-05  0:23 [binutils-gdb] Five fixes, for fcsel, fcvtz, fminnm, mls, and non-widening mul sergiodj+buildbot
2017-01-07  3:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04 20:32 [binutils-gdb] Use correct OSABI constant for FreeBSD/mips binaries sergiodj+buildbot
2017-01-06 22:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04 14:57 [binutils-gdb] update-copyright.py for binutils sergiodj+buildbot
2017-01-06 14:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04 14:42 [binutils-gdb] Sync libiberty from gcc sergiodj+buildbot
2017-01-06 10:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04 10:10 [binutils-gdb] Fix an internal error on writing pieced value sergiodj+buildbot
2017-01-05 22:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04  3:56 [binutils-gdb] bfd: alpha: Fix crash caused by double free with --no-keep-memory sergiodj+buildbot
2017-01-05 18:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04  3:42 [binutils-gdb] Add support for the Q extension to the RISCV ISA sergiodj+buildbot
2017-01-05 14:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04  3:11 [binutils-gdb] Add fall through comment sergiodj+buildbot
2017-01-05  7:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04  2:06 [binutils-gdb] Regen opcodes cgen files sergiodj+buildbot
2017-01-04 15:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04  1:38 [binutils-gdb] Fix compile time warning about using a possibly uninitialised variable sergiodj+buildbot
2017-01-04 23:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2017-01-04  1:22 [binutils-gdb] Don't make symbols dynamic other than undef weak sergiodj+buildbot
2017-01-04 11:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-31  9:11 [binutils-gdb] Create sdynrelro for elfn32 mips too sergiodj+buildbot
2016-12-31 19:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-31  4:19 [binutils-gdb] PRU Opcode Port sergiodj+buildbot
2016-12-31 15:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-28 13:44 [binutils-gdb] Check bfd support for bfd_mips_elf_get_abiflags in mips make rule sergiodj+buildbot
2016-12-30 12:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-26  6:54 [binutils-gdb] dynrelro section for read-only dynamic symbols copied into executable sergiodj+buildbot
2016-12-30  1:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-24  3:33 [binutils-gdb] MIPS/BFD: Remove EI_ABIVERSION 5 allocation for PT_GNU_STACK support sergiodj+buildbot
2016-12-29 13:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-24  0:33 [binutils-gdb] MIPS16: Reassign `0' and `4' operand codes sergiodj+buildbot
2016-12-29  0:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-23 22:22 [binutils-gdb] MIPS16: Simplify extended operand handling sergiodj+buildbot
2016-12-29  3:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-23 21:34 [binutils-gdb] MIPS16/GAS: Disallow EXTEND delay-slot scheduling sergiodj+buildbot
2016-12-28 12:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-23 20:03 [binutils-gdb] Fix more cases of improper test names sergiodj+buildbot
2016-12-28  3:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-23 12:50 [binutils-gdb] Updated email address sergiodj+buildbot
2016-12-27  6:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-21 15:21 [binutils-gdb] Don't make_bfd_vms_lib archive functions NULL sergiodj+buildbot
2016-12-25 20:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-21 14:46 [binutils-gdb] Avoid creating symbol table entries for registers sergiodj+buildbot
2016-12-25 17:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <@gdb-build>
2016-12-17 14:40 ` sergiodj+buildbot
2016-12-17 15:08 ` sergiodj+buildbot
2016-12-17 16:20 ` sergiodj+buildbot
2016-12-17 18:42 ` sergiodj+buildbot
2016-12-17 19:43 ` sergiodj+buildbot
2016-12-17 22:59 ` sergiodj+buildbot
2016-12-17 23:51 ` sergiodj+buildbot
2016-12-18  0:49 ` sergiodj+buildbot
2016-12-18  2:28 ` sergiodj+buildbot
2016-12-18  4:09 ` sergiodj+buildbot
2016-12-18  6:34 ` sergiodj+buildbot
2016-12-18  6:52 ` sergiodj+buildbot
2016-12-18 10:54 ` sergiodj+buildbot
2016-12-18 11:41 ` sergiodj+buildbot
2016-12-18 12:36 ` sergiodj+buildbot
2016-12-18 14:32 ` sergiodj+buildbot
2016-12-18 15:47 ` sergiodj+buildbot
2016-12-18 18:19 ` sergiodj+buildbot
2016-12-18 19:24 ` sergiodj+buildbot
2016-12-18 21:07 ` sergiodj+buildbot
2016-12-18 22:49 ` sergiodj+buildbot
2016-12-19  0:29 ` sergiodj+buildbot
2016-12-19  2:17 ` sergiodj+buildbot
2016-12-19  4:10 ` sergiodj+buildbot
2016-12-19  5:38 ` sergiodj+buildbot
2016-12-19  6:44 ` sergiodj+buildbot
2016-12-19  9:56 ` sergiodj+buildbot
2016-12-19 11:12 ` sergiodj+buildbot
2016-12-19 11:44 ` sergiodj+buildbot
2016-12-19 13:05 ` sergiodj+buildbot
2016-12-19 15:05 ` sergiodj+buildbot
2016-12-19 17:42 ` sergiodj+buildbot
2016-12-19 19:54 ` sergiodj+buildbot
2016-12-19 21:07 ` sergiodj+buildbot
2016-12-19 23:05 ` sergiodj+buildbot
2016-12-19 23:54 ` sergiodj+buildbot
2016-12-20  2:02 ` sergiodj+buildbot
2016-12-20  2:41 ` sergiodj+buildbot
2016-12-20  5:37 ` sergiodj+buildbot
2016-12-20  6:23 ` sergiodj+buildbot
2016-12-20  9:31 ` sergiodj+buildbot
2016-12-20 10:55 ` sergiodj+buildbot
2016-12-20 11:53 ` sergiodj+buildbot
2016-12-20 17:36 ` sergiodj+buildbot
2016-12-20 18:35 ` sergiodj+buildbot
2016-12-20 19:55 ` sergiodj+buildbot
2016-12-20 21:39 ` sergiodj+buildbot
2016-12-21  1:26 ` sergiodj+buildbot
2016-12-21  2:27 ` sergiodj+buildbot
2016-12-21  2:53 ` sergiodj+buildbot
2016-12-21  8:37 ` sergiodj+buildbot
2016-12-21 11:19 ` sergiodj+buildbot
2016-12-21 11:33 ` sergiodj+buildbot
2016-12-21 11:33 ` sergiodj+buildbot
2016-12-21 13:07 ` sergiodj+buildbot
2016-12-21 14:27 ` sergiodj+buildbot
2016-12-21 16:42 ` sergiodj+buildbot
2016-12-21 19:48 ` sergiodj+buildbot
2016-12-21 20:45 ` sergiodj+buildbot
2016-12-21 20:51 ` sergiodj+buildbot
2016-12-21 20:53 ` sergiodj+buildbot
2016-12-22  0:23 ` sergiodj+buildbot
2016-12-22  2:09 ` sergiodj+buildbot
2016-12-22  3:31 ` sergiodj+buildbot
2016-12-22  4:52 ` sergiodj+buildbot
2016-12-22  6:36 ` sergiodj+buildbot
2016-12-22  6:58 ` sergiodj+buildbot
2016-12-22  7:37 ` sergiodj+buildbot
2016-12-22 11:46 ` sergiodj+buildbot
2016-12-22 13:08 ` sergiodj+buildbot
2016-12-22 15:52 ` sergiodj+buildbot
2016-12-22 17:13 ` sergiodj+buildbot
2016-12-22 18:34 ` sergiodj+buildbot
2016-12-22 19:15 ` sergiodj+buildbot
2016-12-22 21:19 ` sergiodj+buildbot
2016-12-22 21:24 ` sergiodj+buildbot
2016-12-20 15:08 [binutils-gdb] MIPS16/opcodes: Respect ISA and ASE in disassembly sergiodj+buildbot
2016-12-24 13:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-20 14:09 [binutils-gdb] MIPS16/opcodes: Correct 64-bit macros' ISA membership sergiodj+buildbot
2016-12-24  4:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-20  2:06 [binutils-gdb] Correct assembler mnemonic for RISC-V aqrl AMOs sergiodj+buildbot
2016-12-23 21:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-04  2:02 [binutils-gdb] Fix bugs with tbnz/tbz instructions sergiodj+buildbot
2016-12-17 14:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-03 13:35 [binutils-gdb] PowerPC64 dot-symbol compatibility bugfixes sergiodj+buildbot
2016-12-17  6:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-03 13:02 [binutils-gdb] Tidy ppc64_elf_hide_symbol sergiodj+buildbot
2016-12-17  3:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-03 12:21 [binutils-gdb] PowerPC64 add_symbol_adjust sergiodj+buildbot
2016-12-16 22:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-03 11:55 [binutils-gdb] Indirect and warning symbols sergiodj+buildbot
2016-12-16 18:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-03 11:13 [binutils-gdb] ppc64_elf_copy_indirect_symbol versioned_hidden fix sergiodj+buildbot
2016-12-16 16:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 22:35 [binutils-gdb] Introduce enum_flag type for ui_out flags sergiodj+buildbot
2016-12-16 12:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 21:50 [binutils-gdb] Remove unneeded pattern matching in gdb.base/maint.exp sergiodj+buildbot
2016-12-16 11:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 21:13 [binutils-gdb] Support an "unlimited" number of user-defined arguments sergiodj+buildbot
2016-12-16  7:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 20:34 [binutils-gdb] Test user-defined gdb commands and arguments stack sergiodj+buildbot
2016-12-16  3:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 19:55 [binutils-gdb] Fix PR 20559 - "eval" command and $arg0...$arg9/$argc substitution sergiodj+buildbot
2016-12-16  2:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 18:56 [binutils-gdb] Fix seg-fault in linker when passed a corrupt binary input file sergiodj+buildbot
2016-12-15 23:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 18:11 [binutils-gdb] Revert change to gdb.cp/ovldbreak.exp sergiodj+buildbot
2016-12-15 20:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 17:12 [binutils-gdb] Fix seg-fault in the linker when examining a corrupt binary sergiodj+buildbot
2016-12-15 17:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 16:48 [binutils-gdb] PR symtab/16264 - support DW_AT_main_subprogram sergiodj+buildbot
2016-12-15 13:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 16:03 [binutils-gdb] Rename some trace functions sergiodj+buildbot
2016-12-15 12:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 15:26 [binutils-gdb] Remove mi_out_data::suppress_output sergiodj+buildbot
2016-12-15  8:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 12:02 [binutils-gdb] Always pass a valid section header offset to elf_parse_notes sergiodj+buildbot
2016-12-15  4:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 11:30 [binutils-gdb] Add support for Fushia OS sergiodj+buildbot
2016-12-15  1:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 10:50 [binutils-gdb] [AArch64] Recognize STR instruction in prologue sergiodj+buildbot
2016-12-14 22:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02 10:11 [binutils-gdb] Add unit test to aarch64 prologue analyzer sergiodj+buildbot
2016-12-14 21:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  6:01 [binutils-gdb] Don't handle timeout inside gdb_test_multiple sergiodj+buildbot
2016-12-14 17:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  5:34 [binutils-gdb] Class-ify ui_out_table sergiodj+buildbot
2016-12-14 12:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  5:00 [binutils-gdb] ui_out_table: Replace boolean flag with enum sergiodj+buildbot
2016-12-14  9:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  4:41 [binutils-gdb] Simplify ui-out level code sergiodj+buildbot
2016-12-14  6:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  3:57 [binutils-gdb] Class-ify ui_out_level sergiodj+buildbot
2016-12-14  4:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  2:49 [binutils-gdb] Class-ify ui_out_hdr sergiodj+buildbot
2016-12-14  1:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  2:20 [binutils-gdb] Use std::string for ui_out_hdr's text fields sergiodj+buildbot
2016-12-13 22:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  2:11 [binutils-gdb] Replace hand-made linked list of ui_out_hdr by vector and iterator sergiodj+buildbot
2016-12-13 20:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  1:27 [binutils-gdb] Fixup testcases outputting own name as a test name and standardize failed compilation messages sergiodj+buildbot
2016-12-13 17:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  0:34 [binutils-gdb] Fix test names starting with uppercase using multi-line gdb_test_multiple sergiodj+buildbot
2016-12-13 13:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-02  0:06 [binutils-gdb] Fix test names starting with uppercase using multi-line gdb_test_no_output sergiodj+buildbot
2016-12-13 11:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 23:25 [binutils-gdb] Fix test names starting with uppercase using multi-line gdb_test/mi_gdb_test sergiodj+buildbot
2016-12-13  8:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 23:01 [binutils-gdb] Fix test names starting with uppercase using gdb_test_multiple sergiodj+buildbot
2016-12-13  5:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 22:09 [binutils-gdb] Fix test names starting with uppercase using gdb_test_no_output sergiodj+buildbot
2016-12-13  2:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 21:50 [binutils-gdb] Fix test names starting with uppercase using gdb_test on a single line sergiodj+buildbot
2016-12-12 23:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 21:12 [binutils-gdb] Fix test names starting with uppercase output by basic functions sergiodj+buildbot
2016-12-12 20:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 17:48 [binutils-gdb] Fix bug with FP stur instructions sergiodj+buildbot
2016-12-12 18:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 14:12 [binutils-gdb] Fix accesses to the GOT for AARCH64 operating in 32-bit mode sergiodj+buildbot
2016-12-12 13:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 13:18 [binutils-gdb] Fix handling of MIPS16 HI16 relocs sergiodj+buildbot
2016-12-12 10:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 12:29 [binutils-gdb] Fix a seg-fault disassembling a corrupt binary sergiodj+buildbot
2016-12-12  7:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 12:11 [binutils-gdb] Fix abort in x86 disassembler sergiodj+buildbot
2016-12-12  4:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01 10:32 [binutils-gdb] Fix seg-fault running addr2line on a corrupt binary sergiodj+buildbot
2016-12-12  1:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01  5:58 [binutils-gdb] Use std::string in ui_out_table sergiodj+buildbot
2016-12-11 22:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01  5:08 [binutils-gdb] Use std::vector for cli_ui_out_data::streams sergiodj+buildbot
2016-12-11 20:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01  4:21 [binutils-gdb] Use std::vector for mi_ui_out_data::streams sergiodj+buildbot
2016-12-11 19:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01  3:47 [binutils-gdb] Use std::vector for ui_out::levels sergiodj+buildbot
2016-12-11 15:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-12-01  3:08 [binutils-gdb] Use new/delete instead of malloc/free-based functions sergiodj+buildbot
2016-12-11 10:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-30 21:56 [binutils-gdb] Makefiles: Disable suffix rules and implicit rules sergiodj+buildbot
2016-12-11  8:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-30 12:39 [binutils-gdb] [ARM] Read memory as unsigned integer sergiodj+buildbot
2016-12-11  5:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-30 12:13 [binutils-gdb] Revert accidental elf.c change sergiodj+buildbot
2016-12-11  3:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-30  7:01 [binutils-gdb] PR20886, looping in ppc64_elf_size_stubs sergiodj+buildbot
2016-12-10 20:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-29 12:01 [binutils-gdb] [ARC] Add checking for LP_COUNT reg usage, improve error reporting sergiodj+buildbot
2016-12-10 17:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-29 11:20 [binutils-gdb] [ARC] Fix disassembler option sergiodj+buildbot
2016-12-10 15:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-29  3:18 [binutils-gdb] Fix debug output in record_full_open_1 sergiodj+buildbot
2016-12-10 12:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-28 21:09 [binutils-gdb] X86: Ignore REX_B bit for 32-bit XOP instructions sergiodj+buildbot
2016-12-10  5:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-28 20:51 [binutils-gdb] Partially revert patch for PR 20815 - do not sort the PT_LOAD segments. Non-ordered segments are needed by the Linux kernel sergiodj+buildbot
2016-12-10  8:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-28 19:38 [binutils-gdb] Restrict checking value.lval on using address sergiodj+buildbot
2016-12-10  3:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-28 19:26 [binutils-gdb] Adjust Value.location for lval_register sergiodj+buildbot
2016-12-09 23:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-28 17:50 [binutils-gdb] Move computed value's frame id to piece_closure sergiodj+buildbot
2016-12-09 20:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-28 16:35 [binutils-gdb] Properly hide hidden versioned symbol in executable sergiodj+buildbot
2016-12-09 17:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-27  8:30 [binutils-gdb] Remove verbosity from ui_out_message and friends sergiodj+buildbot
2016-12-09  6:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-27  8:16 [binutils-gdb] Constify wrap_here/wrap_hint code path sergiodj+buildbot
2016-12-09  4:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-27  5:56 [binutils-gdb] Fix return value of uo_redirect sergiodj+buildbot
2016-12-09  0:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-27  5:37 [binutils-gdb] Remove ui_out_destroy sergiodj+buildbot
2016-12-08 22:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-27  4:37 [binutils-gdb] Rename ui_out_data to mi_ui_out_data sergiodj+buildbot
2016-12-08 19:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-27  4:20 [binutils-gdb] Remove unused functions and declarations sergiodj+buildbot
2016-12-08 15:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-26 15:59 [binutils-gdb] Remove stale comments sergiodj+buildbot
2016-12-08 12:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-25 21:27 [binutils-gdb] Remove check requiring void argument to functions with no parameters sergiodj+buildbot
2016-12-08 10:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-25 17:47 [binutils-gdb] Fix typo in Makefile sergiodj+buildbot
2016-12-08  7:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-25 16:29 [binutils-gdb] Fix typo in comment sergiodj+buildbot
2016-12-08  2:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-25 15:36 [binutils-gdb] Fix typos in comment sergiodj+buildbot
2016-12-08  4:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-25 10:36 [binutils-gdb] Prevent problems with section alignment by not shrinking the .rsrc section sergiodj+buildbot
2016-12-07 22:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 21:27 [binutils-gdb] Do not use std::move when assigning an anonymous object to a unique_ptr sergiodj+buildbot
2016-12-07 19:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 21:00 [binutils-gdb] Add noexcept to custom non-throwing new operators sergiodj+buildbot
2016-12-07 15:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 19:17 [binutils-gdb] Optimize byte-aligned copies in copy_bitwise() sergiodj+buildbot
2016-12-07 12:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 19:13 [binutils-gdb] Add unit test for copy_bitwise sergiodj+buildbot
2016-12-07 10:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 18:47 [binutils-gdb] Fix copy_bitwise() sergiodj+buildbot
2016-12-07  9:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 17:53 [binutils-gdb] Fix PR12616 - gdb does not implement DW_AT_data_bit_offset sergiodj+buildbot
2016-12-07  5:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24 14:48 [binutils-gdb] [ARM] Bind defined symbol locally in PIE sergiodj+buildbot
2016-12-07  3:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-24  3:59 [binutils-gdb] RISC-V/bfd: Fix bitsize of R_RISCV_ADD8 sergiodj+buildbot
2016-12-06 21:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23 17:24 [binutils-gdb] gdb: Use C++11 std::chrono sergiodj+buildbot
2016-12-06 18:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23 17:10 [binutils-gdb] Minor formatting fixups in Makefiles sergiodj+buildbot
2016-12-06 15:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23 16:36 [binutils-gdb] Normalize names of some source files sergiodj+buildbot
2016-12-06 14:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23 15:19 [binutils-gdb] Makefiles: Flatten and sort file lists sergiodj+buildbot
2016-12-06 10:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23 11:55 [binutils-gdb] Fix the linker so that it will not silently generate ELF binaries with invalid program headers. Fix readelf to report such invalid binaries sergiodj+buildbot
2016-12-06  6:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  9:06 [binutils-gdb] elf_backend_dtrel_excludes_plt sergiodj+buildbot
2016-12-06  5:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  8:40 [binutils-gdb] Delete duplicate target short-cuts to dynamic sections sergiodj+buildbot
2016-12-06  1:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  7:46 [binutils-gdb] Regen POTFILES.in sergiodj+buildbot
2016-12-05 22:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  3:21 [binutils-gdb] Fix spelling mistakes in comments in configure scripts sergiodj+buildbot
2016-12-05 11:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  2:43 [binutils-gdb] gdbserver: Use warning for warnings sergiodj+buildbot
2016-12-05 18:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  1:51 [binutils-gdb] gdbserver: Use debug_printf for debug output sergiodj+buildbot
2016-12-05 15:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  1:00 [binutils-gdb] Fix spelling mistakes in comments in shell scripts sergiodj+buildbot
2016-12-05 12:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  0:36 [binutils-gdb] gdbarch software_single_step frame_info to regcache: tic6x sergiodj+buildbot
2016-12-05  2:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-23  0:03 [binutils-gdb] Change gdbarch software_single_step frame_info to regcache sergiodj+buildbot
2016-12-05  6:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 22:40 [binutils-gdb] gdbarch software_single_step frame_info to regcache: spu sergiodj+buildbot
2016-12-05  4:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 21:00 [binutils-gdb] gdbarch software_single_step frame_info to regcache: rs6000 sergiodj+buildbot
2016-12-05  2:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 20:47 [binutils-gdb] gdbarch software_single_step frame_info to regcache: s390 sergiodj+buildbot
2016-12-04 22:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 20:15 [binutils-gdb] gdbarch software_single_step frame_info to regcache: sparc sergiodj+buildbot
2016-12-04 17:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 19:25 [binutils-gdb] gdbarch software_single_step frame_info to regcache: nios2 sergiodj+buildbot
2016-12-04 14:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 18:47 [binutils-gdb] gdbarch software_single_step frame_info to regcache: moxie sergiodj+buildbot
2016-12-04 11:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 17:49 [binutils-gdb] gdbarch software_single_step frame_info to regcache: mips sergiodj+buildbot
2016-12-04  8:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 17:26 [binutils-gdb] gdbarch software_single_step frame_info to regcache: cris sergiodj+buildbot
2016-12-04  6:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 16:56 [binutils-gdb] gdbarch software_single_step frame_info to regcache: alpha sergiodj+buildbot
2016-12-04  1:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 15:55 [binutils-gdb] gdbarch software_single_step frame_info to regcache: aarch64 sergiodj+buildbot
2016-12-04  0:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 15:10 [binutils-gdb] New regcache_raw_get_signed sergiodj+buildbot
2016-12-03 21:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 14:50 [binutils-gdb] [ARC] Fix printing 'b' mnemonics sergiodj+buildbot
2016-12-03 13:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 13:53 [binutils-gdb] gas, opcodes: fix hardware capabilities bumping in the sparc assembler sergiodj+buildbot
2016-12-03 17:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 11:18 [binutils-gdb] PR20744, Incorrect PowerPC VLE relocs sergiodj+buildbot
2016-12-03 11:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 10:39 [binutils-gdb] Use input_bfd in relocate_section sergiodj+buildbot
2016-12-03  9:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-22 10:10 [binutils-gdb] Use VALUE_NEXT_FRAME_ID in value_from_component sergiodj+buildbot
2016-12-03  6:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-21 21:38 [binutils-gdb] Add missing POSTCOMPILE step to mi/ file generation rules sergiodj+buildbot
2016-12-03  4:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-21 17:38 [binutils-gdb] BFD/DWARF2: Correct an `index' global shadowing error sergiodj+buildbot
2016-12-03  0:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-21 14:37 [binutils-gdb] Create subobject value in pretty printer sergiodj+buildbot
2016-12-02 21:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-19 19:14 [binutils-gdb] ARI: Add detection of printf_vma and sprintf_vma sergiodj+buildbot
2016-12-02 10:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-19 13:29 [binutils-gdb] Revert "bfd: allow negative offsets to _GLOBAL_OFFSET_TABLE_ in elf64 SPARC" sergiodj+buildbot
2016-12-02  8:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-19  3:34 [binutils-gdb] Makefile: fix typo sergiodj+buildbot
2016-12-02  5:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-19  1:25 [binutils-gdb] libiberty: demangler crash with missing :? or fold expression component sergiodj+buildbot
2016-12-01 21:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-19  0:43 [binutils-gdb] bfd: fix negative GOT offsets for non-local references on sparc64 sergiodj+buildbot
2016-12-02  2:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 19:31 [binutils-gdb] libiberty: Add Rust symbol demangling sergiodj+buildbot
2016-12-01 23:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 18:18 [binutils-gdb] libiberty: Fix some demangler crashes caused by reading past end of input sergiodj+buildbot
2016-12-01 17:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 18:01 [binutils-gdb] libiberty: Add -Wshadow=local to warning flags (if supported) sergiodj+buildbot
2016-12-01 15:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 16:45 [binutils-gdb] Implement P0012R1, Make exception specifications part of the type system sergiodj+buildbot
2016-12-01 11:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 16:19 [binutils-gdb] libiberty: Fix memory leak in ada_demangle when symbol cannot be demangled sergiodj+buildbot
2016-12-01  3:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 16:14 [binutils-gdb] libiberty: Fix -Wimplicit-fallthrough warnings sergiodj+buildbot
2016-12-01  9:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 16:06 [binutils-gdb] Implement P0136R1, Rewording inheriting constructors sergiodj+buildbot
2016-12-01  5:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 14:01 [binutils-gdb] PR c++/71696 testcase sergiodj+buildbot
2016-12-01  0:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 13:05 [binutils-gdb] [AArch64] Add ARMv8.3 FCMLA and FCADD instructions sergiodj+buildbot
2016-11-30 21:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 12:49 [binutils-gdb] [AArch64] Add ARMv8.3 weaker release consistency load instructions sergiodj+buildbot
2016-11-30 19:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 11:34 [binutils-gdb] [AArch64] Add ARMv8.3 javascript floating-point conversion instruction sergiodj+buildbot
2016-11-30 16:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18 11:23 [binutils-gdb] [AArch64] Add ARMv8.3 combined pointer authentication load instructions sergiodj+buildbot
2016-11-30 12:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-18  9:59 [binutils-gdb] Help diagnose problems with the metag target when mixing static and shared binaries sergiodj+buildbot
2016-11-30 10:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 20:10 [binutils-gdb] Makefile: Replace explicit subdir rules with pattern rules sergiodj+buildbot
2016-11-30  6:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 19:35 [binutils-gdb] Makefile: Replace old suffix rules with pattern rules sergiodj+buildbot
2016-11-30  4:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 18:49 [binutils-gdb] Remove code that checks for GNU/non-GNU make sergiodj+buildbot
2016-11-30  3:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 18:31 [binutils-gdb] Document new hard requirement on GNU make sergiodj+buildbot
2016-11-29 23:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 16:49 [binutils-gdb] gdb/c-exp.y: fprintf -> parser_fprintf sergiodj+buildbot
2016-11-29 19:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 15:56 [binutils-gdb] gdb/ctf.c: Get rid of mkdir redefinition sergiodj+buildbot
2016-11-29 17:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17 14:41 [binutils-gdb] gdb/ada-lang.c: one malloc -> unique_ptr<[]> sergiodj+buildbot
2016-11-29 12:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17  1:28 [binutils-gdb] gdb/tracepoint.c: Don't use printf_vma sergiodj+buildbot
2016-11-29 11:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-17  0:20 [binutils-gdb] Stash frame id of current frame before stashing frame id for previous frame sergiodj+buildbot
2016-11-29  6:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-16 22:59 [binutils-gdb] Make gdb.PendingFrame.read_register handle "user" registers sergiodj+buildbot
2016-11-29  3:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-16 22:04 [binutils-gdb] Change meaning of VALUE_FRAME_ID; rename to VALUE_NEXT_FRAME_ID sergiodj+buildbot
2016-11-28 23:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-16 21:50 [binutils-gdb] Distinguish sentinel frame from null frame sergiodj+buildbot
2016-11-28 19:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-16 20:03 [binutils-gdb] Extend test gdb.python/py-recurse-unwind.exp sergiodj+buildbot
2016-11-28 16:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-16 20:01 [binutils-gdb] Fix PR20789 - relaxation with negative valued diff relocs sergiodj+buildbot
2016-11-27  2:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-16  0:24 [binutils-gdb] gdb: update gnulib to pull in C++ namespace support fixes sergiodj+buildbot
2016-11-26 22:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-15 22:01 [binutils-gdb] Delete gdb::unique_ptr/gdb::move sergiodj+buildbot
2016-11-26 19:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-15 20:54 [binutils-gdb] gdb::{unique_ptr,move} -> std::{unique_ptr,move} sergiodj+buildbot
2016-11-26 15:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-15 20:24 [binutils-gdb] bitfield-parent-optimized-out: Fix struct definition sergiodj+buildbot
2016-11-26 15:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-14 19:27 [binutils-gdb] Also check GOT PLT for R_X86_64_PLTOFF64 sergiodj+buildbot
2016-11-26 10:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-14 10:28 [binutils-gdb] btrace: read entire aux buffer sergiodj+buildbot
2016-11-26  5:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-14  9:18 [binutils-gdb] Fix typo "Faal through" should be "Fall through" sergiodj+buildbot
2016-11-26  3:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-12 20:45 [binutils-gdb] Remove some cleanups from the rust code sergiodj+buildbot
2016-11-25 10:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-12 19:05 [binutils-gdb] Use std::string in rust_get_disr_info sergiodj+buildbot
2016-11-25  7:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 21:18 [binutils-gdb] Don't handle unavailable/optimized-out in spu_software_single_step sergiodj+buildbot
2016-11-25  4:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 20:35 [binutils-gdb] Identify verilog dump tests as such sergiodj+buildbot
2016-11-25  0:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 19:33 [binutils-gdb] [AArch64] Add ARMv8.3 combined pointer authentication branch instructions sergiodj+buildbot
2016-11-24 20:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 18:47 [binutils-gdb] [AArch64] Add ARMv8.3 PACGA instruction sergiodj+buildbot
2016-11-24 17:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 17:32 [binutils-gdb] [AArch64] Add ARMv8.3 single source PAC instructions sergiodj+buildbot
2016-11-24 14:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 16:38 [binutils-gdb] [AArch64] Add ARMv8.3 pointer authentication key registers sergiodj+buildbot
2016-11-24 11:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 15:42 [binutils-gdb] [AArch64] Add ARMv8.3 instructions which are in the NOP space sergiodj+buildbot
2016-11-24  8:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 14:42 [binutils-gdb] [AArch64] Increase max_num_aliases in aarch64-gen sergiodj+buildbot
2016-11-24  3:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 13:30 [binutils-gdb] [AArch64] Add ARMv8.3 command line option and feature flag sergiodj+buildbot
2016-11-24  1:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 12:40 [binutils-gdb] Accept hidden COFF symbols, but treat them as if they were debugging symbols sergiodj+buildbot
2016-11-23 21:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 12:02 [binutils-gdb] Remove apply_val_pretty_printer parameter valaddr sergiodj+buildbot
2016-11-23 17:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 10:40 [binutils-gdb] Remove parameter valaddr from c print functions sergiodj+buildbot
2016-11-23 15:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11 10:09 [binutils-gdb] sim: mips: fix dv-tx3904cpu build error sergiodj+buildbot
2016-11-23 11:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-11  9:01 [binutils-gdb] sim: mips: fix builds for r3900 cpus due to missing check_u64 sergiodj+buildbot
2016-11-23  7:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-10  9:30 [binutils-gdb] [AArch64] Bind defined symbol locally in PIE sergiodj+buildbot
2016-11-22 14:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-10  7:46 [binutils-gdb] Make gdb.mi/user-selected-context-sync.exp use proc_with_prefix sergiodj+buildbot
2016-11-21 16:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-10  7:45 [binutils-gdb] agent_expr_up: gdb::unique_ptr -> std::unique_ptr sergiodj+buildbot
2016-11-21  8:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-10  3:59 [binutils-gdb] tui-winsource: Allocate for actual lines only sergiodj+buildbot
2016-11-20 18:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-09 23:16 [binutils-gdb] X86: Remove the THREE_BYTE_0F7A entry sergiodj+buildbot
2016-11-20  2:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-09 18:42 [binutils-gdb] Eliminate agent_expr_p; VEC -> std::vector in struct bp_target_info sergiodj+buildbot
2016-11-19  2:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-09 12:46 [binutils-gdb] Use ui_file_as_string in gdbarch.sh/gdbarch.c sergiodj+buildbot
2016-11-17 20:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-09  9:53 [binutils-gdb] Use ui_file_as_string in gdb/cli/cli-setshow.c sergiodj+buildbot
2016-11-17  8:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-09  3:33 [binutils-gdb] Use ui_file_as_string in gdb/arm-tdep.c sergiodj+buildbot
2016-11-15 22:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08 23:42 [binutils-gdb] Use ui_file_as_string in gdb/xtensa-tdep.c sergiodj+buildbot
2016-11-15  6:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08 19:48 [binutils-gdb] cli/cli-script.c: Remove some dead NULL checks sergiodj+buildbot
2016-11-14  2:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08 18:27 [binutils-gdb] breakpoint.c:commands_command_1 constification and cleanup sergiodj+buildbot
2016-11-14  6:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08 17:10 [binutils-gdb] gdbarch software_single_step returns VEC (CORE_ADDR) * sergiodj+buildbot
2016-11-13 16:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08 14:37 [binutils-gdb] Remove arm_insert_single_step_breakpoint sergiodj+buildbot
2016-11-13  7:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08  2:27 [binutils-gdb] X86: Properly handle bad FPU opcode sergiodj+buildbot
2016-11-12 10:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-08  0:39 [binutils-gdb] i386-tdep.c (i386_gdbarch_init): Add comments sergiodj+buildbot
2016-11-12  0:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-05  4:41 [binutils-gdb] Fix a few typos sergiodj+buildbot
2016-11-11  6:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-04 23:14 [binutils-gdb] arc/nps400: Validate address type operands correctly sergiodj+buildbot
2016-11-10 13:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-04 17:12 [binutils-gdb] Add support for ARM Cortex-M33 processor sergiodj+buildbot
2016-11-10 13:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-04 14:52 [binutils-gdb] Fix building binutils for all 32-bit targets by moving riscv32 target into 64-bit builds only sergiodj+buildbot
2016-11-10 13:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 23:26 [binutils-gdb] Add support for the sizeof function in Rust sergiodj+buildbot
2016-11-10 13:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 23:17 [binutils-gdb] Add support for untagged unions in Rust sergiodj+buildbot
2016-11-10 13:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 23:05 [binutils-gdb] Fix handling of discriminantless univariant enums in Rust; fix bug with encoded enums sergiodj+buildbot
2016-11-10 13:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 18:59 [binutils-gdb] arc: Implement NPS-400 dcmac instruction sergiodj+buildbot
2016-11-10 13:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 18:26 [binutils-gdb] arc: Change max instruction length to 64-bits sergiodj+buildbot
2016-11-10 13:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 18:15 [binutils-gdb] arc: Swap highbyte and lowbyte in print_insn_arc sergiodj+buildbot
2016-11-10 13:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 18:03 [binutils-gdb] opcodes/arc: Make some macros 64-bit safe sergiodj+buildbot
2016-11-10 13:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 17:51 [binutils-gdb] arc: Replace ARC_SHORT macro with arc_opcode_len function sergiodj+buildbot
2016-11-10 13:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 17:39 [binutils-gdb] arc/opcodes/nps400: Fix some instruction masks sergiodj+buildbot
2016-11-10 13:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 17:33 [binutils-gdb] X86: Reuse opcode 0x80 decoder for opcode 0x82 sergiodj+buildbot
2016-11-10 13:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 17:21 [binutils-gdb] X86: Decode opcode 0x82 as opcode 0x80 in 32-bit mode sergiodj+buildbot
2016-11-10 13:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 17:04 [binutils-gdb] Replace YY_NULL with YY_NULLPTR in LANG-exp.c sergiodj+buildbot
2016-11-10 13:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 16:59 [binutils-gdb] Deprecate old platforms sergiodj+buildbot
2016-11-10 13:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 16:43 [binutils-gdb] X86: Rename REG_82 to REG_83 sergiodj+buildbot
2016-11-10 13:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 16:27 [binutils-gdb] Remove GDBARCH_BREAKPOINT_MANIPULATION and SET_GDBARCH_BREAKPOINT_MANIPULATION sergiodj+buildbot
2016-11-10 13:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 16:26 [binutils-gdb] Remove arm_override_mode sergiodj+buildbot
2016-11-10 13:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 16:16 [binutils-gdb] Determine the kind of single step breakpoint sergiodj+buildbot
2016-11-10 13:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 16:05 [binutils-gdb] Add default_breakpoint_from_pc sergiodj+buildbot
2016-11-10 13:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 15:50 [binutils-gdb] Remove gdbarch_remote_breakpoint_from_pc sergiodj+buildbot
2016-11-10 13:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 15:46 [binutils-gdb] Rename placed_size to kind sergiodj+buildbot
2016-11-10 13:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 15:40 [binutils-gdb] New gdbarch methods breakpoint_kind_from_pc and sw_breakpoint_from_kind sergiodj+buildbot
2016-11-10 13:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-03 15:14 [binutils-gdb] GDBARCH_BREAKPOINT_MANIPULATION and SET_GDBARCH_BREAKPOINT_MANIPULATION sergiodj+buildbot
2016-11-10  2:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-11-01 17:00 [binutils-gdb] Add support for RISC-V architecture sergiodj+buildbot
2016-11-08 23:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-26 20:33 [binutils-gdb] gdb: Free inferior->priv when inferior exits sergiodj+buildbot
2016-11-04 22:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-26 16:05 [binutils-gdb] gdb: Clean up remote.c:remote_resume sergiodj+buildbot
2016-10-26 18:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-25  5:31 [binutils-gdb] ARM/BFD: Correct an `index' global shadowing error sergiodj+buildbot
2016-10-25 20:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-17 23:24 [binutils-gdb] Fix duplicate test message in mi-trace-save.exp sergiodj+buildbot
2016-10-18  9:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-17 21:05 [binutils-gdb] Fix -trace-save crash when argument is missing sergiodj+buildbot
2016-10-18  2:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-17 16:34 [binutils-gdb] gdb: Fix phony iconv build sergiodj+buildbot
2016-10-17 22:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-17 13:56 [binutils-gdb] Removed pseudo invalid instructions opcodes sergiodj+buildbot
2016-10-17 19:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-14 16:29 [binutils-gdb] Move OVERRIDE/FINAL from gcc/coretypes.h to include/ansidecl.h sergiodj+buildbot
2016-10-15 10:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-14 13:25 [binutils-gdb] Fix set sysroot command on AIX sergiodj+buildbot
2016-10-15  6:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-14  7:30 [binutils-gdb] Include strings.h where available sergiodj+buildbot
2016-10-14 17:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13 17:38 [binutils-gdb] ARI: Remove true/false checks sergiodj+buildbot
2016-10-13 17:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13 15:27 [binutils-gdb] Share proc get_var_address sergiodj+buildbot
2016-10-13 16:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13 14:54 [binutils-gdb] Skip testing structures with floating points sergiodj+buildbot
2016-10-13 14:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13  5:24 [binutils-gdb] Use std::string in macho_symfile_read_all_oso sergiodj+buildbot
2016-10-13  6:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13  4:50 [binutils-gdb] Remove unnecessary null_cleanup sergiodj+buildbot
2016-10-13  5:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13  2:59 [binutils-gdb] Turn wchar iterator into a class sergiodj+buildbot
2016-10-13  3:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13  2:25 [binutils-gdb] Change selttest.c to use use std::vector sergiodj+buildbot
2016-10-13  2:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-13  1:21 [binutils-gdb] Convert tid_range_parser and get_number_or_range to classes sergiodj+buildbot
2016-10-13  1:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-12 16:00 [binutils-gdb] arc: Add support for Newlib sergiodj+buildbot
2016-10-12 16:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-12 15:51 [binutils-gdb] Fixup gdb.python/py-value.exp for bare-metal aarch64-elf sergiodj+buildbot
2016-10-12 18:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-12 13:32 [binutils-gdb] arc: Add evaluation of long jump targets sergiodj+buildbot
2016-10-12 15:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-12 13:03 [binutils-gdb] arc: Add a gdbarch_tdep structure sergiodj+buildbot
2016-10-12 14:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-12 11:51 [binutils-gdb] [AArch64] Track FP registers in prologue analyzer sergiodj+buildbot
2016-10-12 11:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-11 23:35 [binutils-gdb] BFD_FAKE_SECTION macro params sergiodj+buildbot
2016-10-11 23:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-11 17:27 [binutils-gdb] testsuite: Fix gdb.arch/powerpc-prologue.c compilation sergiodj+buildbot
2016-10-11 17:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-11 15:00 [binutils-gdb] testsuite: Use standard_output_file sergiodj+buildbot
2016-10-11 15:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-11 10:42 [binutils-gdb] [AArch64] PR target/20666, fix wrong encoding of new introduced BFC pseudo sergiodj+buildbot
2016-10-11 10:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-11  7:59 [binutils-gdb] Always descend into output section statements in lang_do_assignments sergiodj+buildbot
2016-10-11  7:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-10 11:41 [binutils-gdb] Share enum arm_breakpoint_kinds sergiodj+buildbot
2016-10-10 12:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-10 10:37 [binutils-gdb] Rename 'arch' by 'gdbarch' in m32c_gdbarch_init sergiodj+buildbot
2016-10-10 11:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-10  9:44 [binutils-gdb] Remove v850_dbtrap_breakpoint_from_pc sergiodj+buildbot
2016-10-10  9:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-09  0:26 [binutils-gdb] ui-out.c: Remove unused parameter to push_level sergiodj+buildbot
2016-10-09  4:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-07 10:50 [binutils-gdb] Set regdir in tdesc-regs.exp or arm sergiodj+buildbot
2016-10-08 23:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-07 10:19 [binutils-gdb] [AArch64] PR target/20667, fix disassembler for the "special" optional SYS_Rt operand for "ic"/"tlbi" sergiodj+buildbot
2016-10-09  0:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-07  7:22 [binutils-gdb] python: accept address and explicit locations in gdb.decode_line sergiodj+buildbot
2016-10-08 21:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-10-07  2:07 [binutils-gdb] Pass link_info to _bfd_merge_private_bfd_data sergiodj+buildbot
2016-10-08 20:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-29 17:39 [binutils-gdb] Disallow 3-operand cmp[l][i] for ppc64 sergiodj+buildbot
2016-09-29 17:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-19  6:16 [binutils-gdb] gdb: Fix std::{min, max}-related build breakage on 32-bit hosts sergiodj+buildbot
2016-09-20 13:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-15 21:47 [binutils-gdb] Modify POWER9 support to match final ISA 3.0 documentation sergiodj+buildbot
2016-09-15 21:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-07  5:56 [binutils-gdb] Introduce make_cleanup_restore_current_ui sergiodj+buildbot
2016-09-09 18:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-06 23:37 [binutils-gdb] Add missing format for built-in floating-point types sergiodj+buildbot
2016-09-07 12:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-05 19:41 [binutils-gdb] Removed redundant line remote-utils.c sergiodj+buildbot
2016-09-05 20:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-03 12:46 [binutils-gdb] Handle DW_OP_form_tls_address sergiodj+buildbot
2016-09-05 18:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-09-02  9:02 [binutils-gdb] Use target_continue{, _no_signal} instead of target_resume sergiodj+buildbot
2016-09-02  8:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-24 20:24 [binutils-gdb] Allow resetting an empty inferior-tty sergiodj+buildbot
2016-08-25  9:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-20  9:29 [binutils-gdb] Fix missing files for ld when test suite not compiled in the source directory sergiodj+buildbot
2016-08-22 19:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-11  0:35 [binutils-gdb] Support setting thread names (MS-Windows) sergiodj+buildbot
2016-08-11  0:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-10 21:20 [binutils-gdb] Quiet ARI gettext checks sergiodj+buildbot
2016-08-10 22:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-10  1:19 [binutils-gdb] Fix PR gdb/20418 - Problems with synchronous commands and new-ui sergiodj+buildbot
2016-08-10  3:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-10  0:26 [binutils-gdb] Fix PR mi/20431 - Missing MI prompts after sync execution MI command (-exec-continue, etc.) errors sergiodj+buildbot
2016-08-10  1:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-09 22:30 [binutils-gdb] Fix PR gdb/18653: gdb disturbs inferior's inherited signal dispositions sergiodj+buildbot
2016-08-09 22:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-09 20:38 [binutils-gdb] Correct the calculation of the use_counts of merged .got entries sergiodj+buildbot
2016-08-09 22:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-05 22:57 [binutils-gdb] Remove unused cli_command_loop declaration sergiodj+buildbot
2016-08-07 20:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-04 11:45 [binutils-gdb] Determine target description for native aarch64 sergiodj+buildbot
2016-08-04 15:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-08-01 13:20 [binutils-gdb] Swap "single-process" and "multi-process" in process-dies-while-detaching.exp sergiodj+buildbot
2016-08-01 15:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <7bd374a44d1db21b54a9a52ecde1d064cdaa8cd1@gdb-build>
2016-08-01  9:30 ` sergiodj+buildbot
2016-07-22 17:58 [binutils-gdb] Get "num" as unsigned in ctf sergiodj+buildbot
2016-07-27 11:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-19 10:01 [binutils-gdb] Use do_self_tests in selftest.exp sergiodj+buildbot
2016-07-23 22:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-13 21:51 [binutils-gdb] PR python/15620, PR python/18620 - breakpoint events in Python sergiodj+buildbot
2016-07-21 19:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-07 15:52 [binutils-gdb] Fix of default lookup for "this" symbol sergiodj+buildbot
2016-07-20  2:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06 15:43 [binutils-gdb] Remove extraneous parentheses sergiodj+buildbot
2016-07-19 16:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06 15:28 [binutils-gdb] Use unsigned integer constant with left shifts sergiodj+buildbot
2016-07-06 18:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06 14:25 [binutils-gdb] Set uses_fp for frames with a valid FP register explicitly sergiodj+buildbot
2016-07-06 17:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06 13:45 [binutils-gdb] Remove check for negative size sergiodj+buildbot
2016-07-06 15:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06 13:14 [binutils-gdb] Use 'ptid_t' instead of 'ptid' for fbsd_next_vfork_done's return type sergiodj+buildbot
2016-07-06 14:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06  7:38 [binutils-gdb] [ARM] Fix endless recursion on calculating CPRC candidate sergiodj+buildbot
2016-07-06  8:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-06  5:38 [binutils-gdb] Allow subscripting raw pointers sergiodj+buildbot
2016-07-06  6:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-05 14:06 [binutils-gdb] Fix fail in gdb.mi/mi-reverse.exp sergiodj+buildbot
2016-07-05 15:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-05 11:42 [binutils-gdb] [ARM] Purecode compatible long branch veneer for M-profile targets with MOVW sergiodj+buildbot
2016-07-05 13:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-05 10:56 [binutils-gdb] [ARM] Change noread to purecode sergiodj+buildbot
2016-07-05 12:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-05  9:02 [binutils-gdb] babeltrace compilation regression sergiodj+buildbot
2016-07-05 10:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 19:49 [binutils-gdb] Optimize memory_xfer_partial for remote sergiodj+buildbot
2016-07-02  2:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 19:44 [binutils-gdb] [AArch64] Fix +nofp16 handling sergiodj+buildbot
2016-07-02  1:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 18:48 [binutils-gdb] Fake VFORK_DONE events when following only the parent after a vfork sergiodj+buildbot
2016-07-02  0:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 18:19 [binutils-gdb] Move fbsd_resume and related functions below fork following helper code sergiodj+buildbot
2016-07-01 22:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 17:17 [binutils-gdb] Honor detach-on-fork on FreeBSD sergiodj+buildbot
2016-07-01 21:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 16:41 [binutils-gdb] Fix Thumb-2 BL detection sergiodj+buildbot
2016-07-01 20:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 15:50 [binutils-gdb] Set debug registers on all threads belonging to the current inferior sergiodj+buildbot
2016-07-01 18:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 14:59 [binutils-gdb] Consolidate x86 debug register code for BSD native targets sergiodj+buildbot
2016-07-01 17:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 12:59 [binutils-gdb] Extend JIT-reader test and fix GDB problems that exposes sergiodj+buildbot
2016-07-01 16:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 12:41 [binutils-gdb] Fix failure to detach if process exits while detaching on Linux sergiodj+buildbot
2016-07-01 14:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 11:56 [binutils-gdb] Forget watchpoint locations when inferior exits or is killed/detached sergiodj+buildbot
2016-07-01 13:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01 10:53 [binutils-gdb] Factor out "Detaching from program" message printing sergiodj+buildbot
2016-07-01 12:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01  8:42 [binutils-gdb] x86: allow suffix-less movzw and 64-bit movzb sergiodj+buildbot
2016-07-01 10:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01  7:49 [binutils-gdb] x86: remove stray instruction attributes sergiodj+buildbot
2016-07-01  9:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-07-01  7:09 [binutils-gdb] x86/Intel: fix operand checking for MOVSD sergiodj+buildbot
2016-07-01  8:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-30 11:43 [binutils-gdb] Fix gdbserver/MI testing regression sergiodj+buildbot
2016-06-30 15:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-30 11:28 [binutils-gdb] Make testing gdb with FORCE_SEPARATE_MI_TTY=1 actually work sergiodj+buildbot
2016-06-30 12:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-30 10:07 [binutils-gdb] [ARM][GAS] ARMv8.2 should enable ARMv8.1 NEON instructions sergiodj+buildbot
2016-06-30 11:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-30  8:28 [binutils-gdb] Add support for simulating big-endian AArch64 binaries sergiodj+buildbot
2016-06-30 10:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 18:30 [binutils-gdb] Add copyright header in gdb.base/return.c sergiodj+buildbot
2016-06-29 21:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 16:58 [binutils-gdb] Fix PR python/20129 - use of non-existing variable sergiodj+buildbot
2016-06-29 20:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 16:36 [binutils-gdb] PR gdb/17210 - fix possible memory leak in read_memory_robust sergiodj+buildbot
2016-06-29 18:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 14:59 [binutils-gdb] Initialize strtok_r's saveptr to NULL sergiodj+buildbot
2016-06-29 17:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 14:20 [binutils-gdb] Set unknown_syscall differently on arm linux sergiodj+buildbot
2016-06-29 16:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 12:11 [binutils-gdb] sparc: make SPARC_OPCODE_ARCH_MAX part of its enum sergiodj+buildbot
2016-06-29 14:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 11:32 [binutils-gdb] Use strtok_r instead of strsep in rust_get_disr_info sergiodj+buildbot
2016-06-29 13:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-29 10:35 [binutils-gdb] Preserve all mapping symbols in ARM and AArch64 object files sergiodj+buildbot
2016-06-29 11:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-28 18:34 [binutils-gdb] [TILEPro] Don't build gdb sergiodj+buildbot
2016-06-29 10:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-28 17:17 [binutils-gdb] [AArch64] Use int64_t for address offset sergiodj+buildbot
2016-06-29  6:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-28 13:01 [binutils-gdb] Remove parameter sysret from linux_target_ops.get_syscall_trapinfo sergiodj+buildbot
2016-06-28 18:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-28 12:03 [binutils-gdb] Probe catch syscall support sergiodj+buildbot
2016-06-28 15:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-28 11:18 [binutils-gdb] Don't convert R_SPARC_32 to R_SPARC_RELATIVE if class is ELFCLASS64 sergiodj+buildbot
2016-06-28 13:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-28  0:55 [binutils-gdb] MIPS16: Add R_MIPS16_PC16_S1 branch relocation support sergiodj+buildbot
2016-06-28  2:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-25 16:01 [binutils-gdb] xtensa: prototype xtensa_make_property_section in elf/xtensa.h sergiodj+buildbot
2016-06-27  6:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-24 18:39 [binutils-gdb] Add elfcore_grok_freebsd_note to parse FreeBSD ELF core notes sergiodj+buildbot
2016-06-26  3:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-23  9:16 [binutils-gdb] [ARC] Misc minor edits/fixes sergiodj+buildbot
2016-06-25  5:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-22 11:03 [binutils-gdb] Send deleted watchpoint-scope output to all UIs sergiodj+buildbot
2016-06-24  2:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-21 19:51 [binutils-gdb] [DOC] Document support for running interpreters on separate UIs sergiodj+buildbot
2016-06-23 21:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-21 16:33 [binutils-gdb] Make main_ui be heap allocated sergiodj+buildbot
2016-06-23 11:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-21 15:18 [binutils-gdb] Push thread->control.command_interp to the struct thread_fsm sergiodj+buildbot
2016-06-23  7:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-13 14:52 [binutils-gdb] [ARC] Generate DT_RELACOUNT sergiodj+buildbot
2016-06-13 17:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-07 13:02 [binutils-gdb] PowerPC VLE sergiodj+buildbot
2016-06-07 16:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-07 11:49 [binutils-gdb] Frame static link: Handle null pointer sergiodj+buildbot
2016-06-07 13:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-07  9:09 [binutils-gdb] [ARM] Add command line option for RAS extension sergiodj+buildbot
2016-06-07 11:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-06 21:21 [binutils-gdb] Add method/format information to =record-started sergiodj+buildbot
2016-06-06 22:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-06 18:25 [binutils-gdb] Support x86-64 TLS code sequences without PLT sergiodj+buildbot
2016-06-06 20:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-04 20:35 [binutils-gdb] Add z8k ld testsuite and fix range check in coff-z8k.c sergiodj+buildbot
2016-06-04 21:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-03 23:50 [binutils-gdb] Re-add support for lbarx, lharx, stbcx. and sthcx. insns back to the E6500 cpu sergiodj+buildbot
2016-06-04  1:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-03 23:15 [binutils-gdb] Handle indirect branches for AMD64 and Intel64 sergiodj+buildbot
2016-06-04  0:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-03 11:47 [binutils-gdb] Fix C++ build for Cygwin sergiodj+buildbot
2016-06-03 13:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02 19:39 [binutils-gdb] Fix PR python/18984 sergiodj+buildbot
2016-06-02 20:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02 16:28 [binutils-gdb] Add "arm_any" architecture type to allow -m option to various binutils to match any ARM architecture sergiodj+buildbot
2016-06-02 18:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02 15:31 [binutils-gdb] Allow ARC Linux targets that do not use uclibc sergiodj+buildbot
2016-06-02 16:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02 14:30 [binutils-gdb] Replace data32 with data16 in comments sergiodj+buildbot
2016-06-02 15:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02 13:17 [binutils-gdb] Add support for 48 and 64 bit ARC instructions sergiodj+buildbot
2016-06-02 13:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02  3:32 [binutils-gdb] Revert PR16467 change sergiodj+buildbot
2016-06-02  4:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-02  1:33 [binutils-gdb] add more extern C sergiodj+buildbot
2016-06-02  2:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01 16:03 [binutils-gdb] Add new Serbian translation for the bfd library sergiodj+buildbot
2016-06-01 18:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01 15:48 [binutils-gdb] gdb/remote-fileio.c: Eliminate custom SIGINT signal handler sergiodj+buildbot
2016-06-01 17:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01 15:39 [binutils-gdb] Add support for some variants of the ARC nps400 rflt instruction sergiodj+buildbot
2016-06-01 16:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01 10:56 [binutils-gdb] Add xmalloc_failed() function to common-utils.c in to avoid the need to link in libiberty's xmalloc code sergiodj+buildbot
2016-06-01 11:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01  9:27 [binutils-gdb] infcmd, btrace: fix crash in 'finish' for tailcall-only frames sergiodj+buildbot
2016-06-01 10:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01  8:46 [binutils-gdb] Wake up interruptible_select in remote_fileio ctrl-c handler sergiodj+buildbot
2016-06-01  9:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-06-01  3:22 [binutils-gdb] sh: make constant unsigned to avoid narrowing sergiodj+buildbot
2016-06-01  4:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-31 19:07 [binutils-gdb] [PR gdb/19893] Fix handling of synthetic C++ references sergiodj+buildbot
2016-05-31 20:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-31 11:20 [binutils-gdb] Don't needlessly clear xmemdup allocated memory sergiodj+buildbot
2016-05-31 12:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 17:39 [binutils-gdb] Add tests for 64bit values in trace-condition.exp sergiodj+buildbot
2016-05-30 21:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 17:30 [binutils-gdb] Add variable length tests for emit_ref in trace-condition.exp sergiodj+buildbot
2016-05-30 21:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 17:22 [binutils-gdb] Add emit_less_unsigned test in trace-condition.exp sergiodj+buildbot
2016-05-30 19:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 17:13 [binutils-gdb] Move trace conditions tests from ftrace.exp to trace-condition.exp sergiodj+buildbot
2016-05-30 18:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 17:04 [binutils-gdb] Add counter-cases for trace-condition.exp tests sergiodj+buildbot
2016-05-30 17:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 12:38 [binutils-gdb] PR 15231: import bare DW_TAG_lexical_block sergiodj+buildbot
2016-05-30 14:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-30 12:29 [binutils-gdb] Code cleanup: dwarf2_get_pc_bounds: -1/0/+1 -> enum sergiodj+buildbot
2016-05-30 13:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-29 18:59 [binutils-gdb] NEWS: QCatchSyscalls: simplify sergiodj+buildbot
2016-05-29 19:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-29 16:52 [binutils-gdb] NEWS: Remove empty line sergiodj+buildbot
2016-05-29 17:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-29 15:10 [binutils-gdb] Add .noavx512XX directives to x86 assembler sergiodj+buildbot
2016-05-29 16:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-28 13:19 [binutils-gdb] Add dependencies to configure rule sergiodj+buildbot
2016-05-28 14:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-28 10:23 [binutils-gdb] MIPS/BFD: Correctly handle `bfd_reloc_outofrange' with branches sergiodj+buildbot
2016-05-28 12:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-28 10:13 [binutils-gdb] MIPS/BFD: Enable local R_MIPS_26 overflow detection sergiodj+buildbot
2016-05-28 11:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-28  2:08 [binutils-gdb] Return void from linker callbacks sergiodj+buildbot
2016-05-28  8:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 22:07 [binutils-gdb] MIPS/BFD: Include the addend in JALX's target alignment verification sergiodj+buildbot
2016-05-28  7:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 21:56 [binutils-gdb] MIPS/BFD: Fix section symbol name fetching in relocation sergiodj+buildbot
2016-05-28  6:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 17:19 [binutils-gdb] Update x86 CPU_XXX_FLAGS handling sergiodj+buildbot
2016-05-28  4:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 15:32 [binutils-gdb] Skip attach-many-short-lived-threads.exp on known-broken DejaGnu versions sergiodj+buildbot
2016-05-28  2:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 15:15 [binutils-gdb] Replace CpuAMD64/CpuIntel64 with AMD64/Intel64 sergiodj+buildbot
2016-05-28  2:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 14:08 [binutils-gdb] Correct CpuMax in i386-opc.h sergiodj+buildbot
2016-05-28  0:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 13:49 [binutils-gdb] Fix typo introduced during the most recent synchronization update sergiodj+buildbot
2016-05-27 22:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-27 12:58 [binutils-gdb] gdb: Forward VALUE_LVAL when avoiding side effects for STRUCTOP_STRUCT sergiodj+buildbot
2016-05-27 18:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-26 11:56 [binutils-gdb] MIPS/BFD: Don't stop processing on `bfd_reloc_outofrange' sergiodj+buildbot
2016-05-27 12:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-26 10:15 [binutils-gdb] metag: add extern C to header sergiodj+buildbot
2016-05-27 10:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-25 17:39 [binutils-gdb] Reimplement .no87/.nommx/.nosse/.noavx directives sergiodj+buildbot
2016-05-26 20:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-13 18:25 [binutils-gdb] Don't convert GOTPCREL relocation against large section sergiodj+buildbot
2016-05-13 20:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-09 13:29 [binutils-gdb] [ARM/STM32L4XX] PR 20030: --fix-stm32l4xx-629360 fails to create vldm/vpop veneers for double-precision registers sergiodj+buildbot
2016-05-09 19:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-03 12:30 [binutils-gdb] Fix gdb/python/python.c use-after-free sergiodj+buildbot
2016-05-04  1:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-05-03 11:27 [binutils-gdb] [AArch64] Also puts value in place for R_AARCH64_RELATIVE sergiodj+buildbot
2016-05-03 21:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-29 15:45 [binutils-gdb] Pass GOT_RELOC to UNDEFINED_WEAK_RESOLVED_TO_ZERO sergiodj+buildbot
2016-04-29 18:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-21 16:36 [binutils-gdb] Switch gdb's TRY/CATCH to sjlj again sergiodj+buildbot
2016-04-22 15:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-21 13:06 [binutils-gdb] Fix AIX gdb build with C++ compiler sergiodj+buildbot
2016-04-22  9:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-21  0:25 [binutils-gdb] Remove x86 gc_sweep_hook sergiodj+buildbot
2016-04-21 23:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-21  0:21 [binutils-gdb] Don't check relocations in excluded sections sergiodj+buildbot
2016-04-21 19:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-20 22:27 [binutils-gdb] Build GDB as a C++ program by default sergiodj+buildbot
2016-04-21 16:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-19 17:34 [binutils-gdb] symmisc.c (dump_symtab_1, dump_symtab): Delete arg objfile sergiodj+buildbot
2016-04-20  2:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-16  2:42 [binutils-gdb] gdb/ada-exp.y: Remap yydefred sergiodj+buildbot
2016-04-17 12:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-13  8:11 [binutils-gdb] Do target_terminal_ours in query & friends instead of in all callers sergiodj+buildbot
2016-04-14 17:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-12 20:57 [binutils-gdb] Use target_terminal_ours_for_output in warning/internal_error sergiodj+buildbot
2016-04-14 14:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-12 10:00 [binutils-gdb] Add support for .extCondCode, .extCoreRegister and .extAuxRegister sergiodj+buildbot
2016-04-13  0:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-07 19:12 [binutils-gdb] Fix gdb.compile/compile.exp shlib regression sergiodj+buildbot
2016-04-08  3:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-07 18:15 [binutils-gdb] arc/nps400: Add new instructions sergiodj+buildbot
2016-04-08  2:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-07 17:52 [binutils-gdb] gas/arc: Handle multiple arc_opcode chains for same mnemonic sergiodj+buildbot
2016-04-08  0:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-07 17:21 [binutils-gdb] Fix gdb.reverse/finish-reverse-bkpt.exp sergiodj+buildbot
2016-04-07 22:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-07 16:30 [binutils-gdb] Make breakpoint handling in record-full idempotent sergiodj+buildbot
2016-04-07 19:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-06 21:44 [binutils-gdb] Optimized-out pointer: New test for error handling sergiodj+buildbot
2016-04-07  1:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-06 21:04 [binutils-gdb] Fix gdb.threads/dlopen-libpthread.exp crash sergiodj+buildbot
2016-04-07  0:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-06  7:08 [binutils-gdb] testsuite: Update py-mi-objfile to expect console format print sergiodj+buildbot
2016-04-06 12:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-06  1:00 [binutils-gdb] Fix IPA detection in ftrace-insn-reloc.exp sergiodj+buildbot
2016-04-06 10:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-05 22:02 [binutils-gdb] arc/nps400: Add additional instructions sergiodj+buildbot
2016-04-06  9:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-05 19:25 [binutils-gdb] Make ftrace tests work with remote targets sergiodj+buildbot
2016-04-06  7:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-04-05 18:35 [binutils-gdb] Improve gdb_remote_download, remove gdb_download sergiodj+buildbot
2016-04-06  5:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-31 12:58 [binutils-gdb] python: Use console format for output of gdb.execute command sergiodj+buildbot
2016-03-31 16:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-31 11:40 [binutils-gdb] enable -Wwrite-strings for gas sergiodj+buildbot
2016-03-31 13:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-30 14:16 [binutils-gdb] Fix a seg-fault in the AVR linker sergiodj+buildbot
2016-03-30 15:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-29 21:56 [binutils-gdb] gdbserver/s390: Switch on tracepoint support sergiodj+buildbot
2016-03-29 23:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-29 10:50 [binutils-gdb] Tidy up AArch64 simulator code sergiodj+buildbot
2016-03-29 13:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-21 11:29 [binutils-gdb] ARM process record: median instructions sergiodj+buildbot
2016-03-21 16:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-18 15:45 [binutils-gdb] Make sparc_software_single_step static sergiodj+buildbot
2016-03-19  8:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-17  9:19 [binutils-gdb] linux-record: Fix bad fall-through for pipe/pipe2 sergiodj+buildbot
2016-03-17 22:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-16 22:29 [binutils-gdb] PR remote/19496, interrupted syscall in forking-threads-plus-bkpt sergiodj+buildbot
2016-03-17 16:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-16 17:48 [binutils-gdb] xml-tdesc.c (tdesc_start_enum): Fix c++ build sergiodj+buildbot
2016-03-17 11:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-16 16:29 [binutils-gdb] [ARM] Support ARMv8.2 FP16 simd instructions sergiodj+buildbot
2016-03-16 19:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-14 20:28 [binutils-gdb] Regenerate bfd-in2.h sergiodj+buildbot
2016-03-15 11:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-14 16:56 [binutils-gdb] gdb.base/default.exp: Add missing $_as_string to "show convenience" test sergiodj+buildbot
2016-03-14 18:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-10 22:34 [binutils-gdb] Add $_as_string convenience function sergiodj+buildbot
2016-03-11 15:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-10 15:43 [binutils-gdb] Mark the i370 target as obsolete sergiodj+buildbot
2016-03-11 13:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 21:46 [binutils-gdb] gdb: fix doc string of target_can_use_hardware_watchpoint sergiodj+buildbot
2016-03-11  9:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 21:19 [binutils-gdb] Command line input handling TLC sergiodj+buildbot
2016-03-11  8:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 20:47 [binutils-gdb] Use struct buffer in gdb_readline_no_editing sergiodj+buildbot
2016-03-11  3:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 20:27 [binutils-gdb] Update prompt_for_continue comments sergiodj+buildbot
2016-03-10 23:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 20:15 [binutils-gdb] Eliminate async_annotation_suffix sergiodj+buildbot
2016-03-10 21:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 18:28 [binutils-gdb] gdb: Add gen_return_address for powerpc sergiodj+buildbot
2016-03-10  4:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 18:02 [binutils-gdb] gdb: Add ax_pseudo_register_collect for powerpc sergiodj+buildbot
2016-03-10  3:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 16:41 [binutils-gdb] S390: Recognize special jumps in prologue parser sergiodj+buildbot
2016-03-10  1:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 16:30 [binutils-gdb] S390: Add use of unavailable-stack frame ID sergiodj+buildbot
2016-03-09 23:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 16:19 [binutils-gdb] Avoid spaces in osabi names sergiodj+buildbot
2016-03-09 22:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09 16:08 [binutils-gdb] [FR-V] Handle FR300 sergiodj+buildbot
2016-03-09 20:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09  6:37 [binutils-gdb] Allow zero length archive elements sergiodj+buildbot
2016-03-09 15:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09  4:57 [binutils-gdb] Don't create dynamic sections when relocatable sergiodj+buildbot
2016-03-09 11:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09  4:23 [binutils-gdb] Fix floating conversion buffer overrun when host/target format matches sergiodj+buildbot
2016-03-09  7:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09  3:39 [binutils-gdb] [CRIS] Don't internal error if forced big endian sergiodj+buildbot
2016-03-09  9:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-09  3:19 [binutils-gdb] Assert that a floating type's length is at least as long as its format sergiodj+buildbot
2016-03-09  5:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-07 17:40 [binutils-gdb] Allow zero length archive elements sergiodj+buildbot
2016-03-08 13:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-07 16:52 [binutils-gdb] Fix "set architecture mips:10000" crash sergiodj+buildbot
2016-03-07 20:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-07 15:51 [binutils-gdb] [AArch64] Create .got section if _GLOBAL_OFFSET_TABLE_ referenced sergiodj+buildbot
2016-03-07 18:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-06  1:57 [binutils-gdb] Improve analysis of racy testcases sergiodj+buildbot
2016-03-06 22:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-04 16:41 [binutils-gdb] Add missing ChangeLog entries for commit 82838 sergiodj+buildbot
2016-03-05 12:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-04 14:50 [binutils-gdb] Treat common symbol in executable as definition sergiodj+buildbot
2016-03-04 16:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 21:12 [binutils-gdb] Add new plugin hooks to support querying section alignment and size sergiodj+buildbot
2016-03-04 11:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 21:03 [binutils-gdb] get_symbols() plugin API tweak to support --start-lib/--end-lib sergiodj+buildbot
2016-03-04  4:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 19:03 [binutils-gdb] gdb.base/skip.exp: Use with_test_prefix sergiodj+buildbot
2016-03-04  2:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 15:34 [binutils-gdb] Fix bugs in the simulation of the AArch64's ADDP, FADDP, LD1, CCMP and CCMP instructions sergiodj+buildbot
2016-03-04  1:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 10:20 [binutils-gdb] Reformat gdb.base/step-over-syscall.exp sergiodj+buildbot
2016-03-03 19:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 10:09 [binutils-gdb] Rename disp-step-syscall.exp to step-over-syscall.exp sergiodj+buildbot
2016-03-03 17:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03 10:00 [binutils-gdb] Step over fork/vfork syscall insn in gdbserver sergiodj+buildbot
2016-03-03 16:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03  9:51 [binutils-gdb] Step over syscalll insn with disp-step on and off sergiodj+buildbot
2016-03-03 14:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-03  9:42 [binutils-gdb] Refactor gdb.base/disp-step-syscall.exp for general step over test sergiodj+buildbot
2016-03-03 12:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-02 17:06 [binutils-gdb] testsuite: Fix timeout issues during print of vla-arrays sergiodj+buildbot
2016-03-03  0:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-02 16:31 [binutils-gdb] [OBV] gdbserver: Only write ipa_tdesc_idx if agent is actually loaded sergiodj+buildbot
2016-03-03  3:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-02 16:16 [binutils-gdb] testsuite: Remove unnecessary code in fortran vla-history test sergiodj+buildbot
2016-03-03  1:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-02  4:03 [binutils-gdb] Regenerate bfd files sergiodj+buildbot
2016-03-02  6:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-01 18:47 [binutils-gdb] Fix gdb.trace/ftrace-lock.c compilation sergiodj+buildbot
2016-03-02  3:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-01 17:53 [binutils-gdb] Fix gdb.threads/watchpoint-fork*.c compilation sergiodj+buildbot
2016-03-01 22:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-01 15:41 [binutils-gdb] Fix output path for arm-disp-step.exp sergiodj+buildbot
2016-03-01 19:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-01 12:05 [binutils-gdb] S390: Fix output path for s390-tdbregs test case sergiodj+buildbot
2016-03-01 16:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-03-01 11:55 [binutils-gdb] S390: Fix internal error with stackless inferior sergiodj+buildbot
2016-03-01 14:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-29 17:29 [binutils-gdb] aarch64-linux process record: more syscalls sergiodj+buildbot
2016-03-01 10:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-29 16:58 [binutils-gdb] Support more syscalls in linux-record: pipe2 epoll_create1 eventfd2 fallocate dup3 and inotify_init1 sergiodj+buildbot
2016-02-29 20:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-28 15:25 [binutils-gdb] Don't recursively look for a symbol in all imports of imported modules sergiodj+buildbot
2016-02-28 16:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-26 20:20 [binutils-gdb] Add x86_64-*-rtems* target sergiodj+buildbot
2016-02-27  6:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-26 14:51 [binutils-gdb] Properly implement STT_COMMON sergiodj+buildbot
2016-02-26 18:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <7337a6f2297cdd91bb852b479b284e5796d62cc9@gdb-build>
2016-02-25 18:35 ` sergiodj+buildbot
2016-02-25 17:42 [binutils-gdb] avoid compiler warnings in remote-m32r-sdi.c sergiodj+buildbot
2016-02-26  3:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-25 12:24 [binutils-gdb] Add elf_x86_64_need_pic sergiodj+buildbot
2016-02-25 14:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <338435ef105ff51e967571ad073830ec1eb5a4ab@gdb-build>
2016-02-25  9:03 ` sergiodj+buildbot
2016-02-24 18:24 [binutils-gdb] Move new skip features to proper section (post 7.11) sergiodj+buildbot
2016-02-25  5:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-24 17:45 [binutils-gdb] powerpc: Support z-point type in gdbserver sergiodj+buildbot
2016-02-25  3:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-24 14:22 [binutils-gdb] [OPCODES][ARM][1/3]Add armv8.2 fp16 instruction dissembler support sergiodj+buildbot
2016-02-24 23:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-24 14:09 [binutils-gdb] [OPCODE][ARM]Correct disassembler for cdp/cdp2, mcr/mcr2, mrc/mrc2, ldc/ldc2, stc/stc2 sergiodj+buildbot
2016-02-24 20:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-24  3:22 [binutils-gdb] Build unavailable-stack frames for tracepoint sergiodj+buildbot
2016-02-24  4:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-23 21:37 [binutils-gdb] Extend "skip" command to support -file, -gfile, -function, -rfunction sergiodj+buildbot
2016-02-23 23:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-23 18:34 [binutils-gdb] arm-tdep.c: Remove unused "to" parameters sergiodj+buildbot
2016-02-23 20:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-23 13:32 [binutils-gdb] Make linker assigned symbol dynamic only for shared object sergiodj+buildbot
2016-02-23 16:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-22 16:37 [binutils-gdb] gdb-gdb.py: SyntaxError: Missing parentheses in call to 'print' sergiodj+buildbot
2016-02-22 21:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-21 21:15 [binutils-gdb] Also update recursive call to d_lookup_symbol_imports sergiodj+buildbot
2016-02-21 22:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-21 20:46 [binutils-gdb] Remove search_parents parameter from d_lookup_symbol_imports sergiodj+buildbot
2016-02-21 21:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-19 16:10 [binutils-gdb] Prevent a seg-fault in the linker when accessing a specially crafted, corrupt, aout binary sergiodj+buildbot
2016-02-19 19:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <f79a3bae8725dfe0e11b04ddfc6e6bc8f23e4e4e@gdb-build>
2016-02-18 21:29 ` sergiodj+buildbot
2016-02-18 21:14 [binutils-gdb] Add D support to gdb_default_target_compile sergiodj+buildbot
2016-02-19  0:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-18 12:18 [binutils-gdb] Set breakpoint condition-evaluation in forking-threads-plus-breakpoint.exp sergiodj+buildbot
2016-02-18 14:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-17 17:04 [binutils-gdb] Add missing cleanup in exec_file_locate_attach sergiodj+buildbot
2016-02-17 18:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-16 20:52 [binutils-gdb] Whitespace cleanup for skip testcase sergiodj+buildbot
2016-02-17  3:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-16  0:37 [binutils-gdb] Fix BFD format matching for x86_64-w64-mingw32 -m32 LTO sergiodj+buildbot
2016-02-16  5:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-16  0:16 [binutils-gdb] Add parentheses to prevent truncated addresses sergiodj+buildbot
2016-02-16  4:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-15 17:01 [binutils-gdb] testsuite: Fix some tests that write outside of the standard output directory sergiodj+buildbot
2016-02-15 19:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-15 11:25 [binutils-gdb] Enhance GAS's .section directive so that it can take numeric values for the flags and type fields. (ELF only) sergiodj+buildbot
2016-02-15 14:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-14  8:44 [binutils-gdb] testsuite: Fix false Fortran regressions with recent gcc sergiodj+buildbot
2016-02-14 13:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <020ecd38e74681cb14987baf1a4d3c3ee3be0006@gdb-build>
2016-02-13  2:23 ` sergiodj+buildbot
     [not found] <d21b5f15d92bc1902b9e57198f67550326c887d7@gdb-build>
2016-02-13  0:43 ` sergiodj+buildbot
     [not found] <7cae9051edc2e3b11b5c79c08edfb91ee7f4e2e4@gdb-build>
2016-02-12 17:31 ` sergiodj+buildbot
     [not found] <9f5fed7852cae412443957862d759660cfcb3fd5@gdb-build>
2016-02-12  4:14 ` sergiodj+buildbot
2016-02-11 20:15 [binutils-gdb] Add missing quotes to gdb/testsuite/README sergiodj+buildbot
2016-02-12 15:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <62e5fd57bcdfb58eadd08ec430c4dfd742027d8e@gdb-build>
2016-02-11 13:20 ` sergiodj+buildbot
     [not found] <473b99e5721ad623cc5826e03a73e2cf6cef4eb5@gdb-build>
2016-02-11  9:53 ` sergiodj+buildbot
2016-02-10 17:06 [binutils-gdb] Clear *VAL in regcache_raw_read_unsigned sergiodj+buildbot
2016-02-11 19:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-10  4:06 [binutils-gdb] Update NEWS post GDB 7.11 branch creation sergiodj+buildbot
2016-02-10 18:21 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 23:32 [binutils-gdb] Enable/update legacy linespecs in MI sergiodj+buildbot
2016-02-10  9:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 23:05 [binutils-gdb] Use string_to_event_location_basic in guile sergiodj+buildbot
2016-02-10  8:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 22:48 [binutils-gdb] Refactor string_to_event_location for legacy linespec support sergiodj+buildbot
2016-02-10  4:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <8adce0342f5f50aba0154fc56ca59df45b219738@gdb-build>
2016-02-09 20:34 ` sergiodj+buildbot
2016-02-09 16:46 [binutils-gdb] Fix compile time warnings building the binutils with a gcc6 compiler sergiodj+buildbot
2016-02-10  2:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 14:16 [binutils-gdb] Modernize configure.ac's sergiodj+buildbot
2016-02-10  0:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 12:41 [binutils-gdb] Fix PR19548: Breakpoint re-set inserts breakpoints when it shouldn't sergiodj+buildbot
2016-02-09 22:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 11:06 [binutils-gdb] Add a more helpful warning message to explain why some AArch64 relocations can overflow sergiodj+buildbot
2016-02-09 18:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 10:57 [binutils-gdb] Revert "Fix build breakage" sergiodj+buildbot
2016-02-09 16:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 10:48 [binutils-gdb] Revert "Add a more helpful warning message to explain why some AArch64 relocations can overflow." sergiodj+buildbot
2016-02-09 15:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 10:38 [binutils-gdb] Fix build breakage sergiodj+buildbot
2016-02-09 13:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-09 10:10 [binutils-gdb] Add a more helpful warning message to explain why some AArch64 relocations can overflow sergiodj+buildbot
2016-02-09 11:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-08 19:40 [binutils-gdb] Always organize test artifacts in a directory hierarchy sergiodj+buildbot
2016-02-08 23:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-08 19:12 [binutils-gdb] Fix in-tree, parallel running of Ada tests sergiodj+buildbot
2016-02-08 21:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-08 18:12 [binutils-gdb] remote.c: Cleanup unused variables sergiodj+buildbot
2016-02-08 19:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-07 14:56 [binutils-gdb] varobj: Cleanup dead code sergiodj+buildbot
2016-02-07 16:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-06  1:39 [binutils-gdb] sim: mips: fix prog_bfd usage sergiodj+buildbot
2016-02-06  3:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-02 21:21 [binutils-gdb] Fix typos in bfd/ChangeLog and bfd/elf64-x86-64.c sergiodj+buildbot
2016-02-03  5:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-02 13:44 [binutils-gdb] PowerPC64 ELFv2 entry code sergiodj+buildbot
2016-02-03  1:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-02 12:31 [binutils-gdb] Clear HAS_RELOC if there are no relocations sergiodj+buildbot
2016-02-03  0:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-02 12:26 [binutils-gdb] Adaptation of siginfo fixup for the new bnd fields sergiodj+buildbot
2016-02-02 19:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-02 11:38 [binutils-gdb] epiphany/disassembler: Improve alignment of output sergiodj+buildbot
2016-02-02 20:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-02 11:05 [binutils-gdb] Preparation for new siginfo on Linux sergiodj+buildbot
2016-02-02 14:09 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01 23:59 [binutils-gdb] Don't add DT_NEEDED for unmatched symbol sergiodj+buildbot
2016-02-02  3:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01 23:33 [binutils-gdb] gdb.base/skip.exp: Clean up multiple references to same test name sergiodj+buildbot
2016-02-02  1:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01 19:35 [binutils-gdb] Test gdb.threads/forking-threads-plus-breakpoint.exp with displaced stepping off sergiodj+buildbot
2016-02-01 23:04 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01 18:23 [binutils-gdb] gdb: New set/show max-value-size command sergiodj+buildbot
2016-02-01 19:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01 13:53 [binutils-gdb] Add support for importing data from ILF images sergiodj+buildbot
2016-02-01 17:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01  3:36 [binutils-gdb] Fix some comments in varobj.{c,h} sergiodj+buildbot
2016-02-01  6:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-02-01  3:01 [binutils-gdb] elf64-s390.c: Fix -Werror=misleading-indentation sergiodj+buildbot
2016-02-01  4:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-31 20:38 [binutils-gdb] Fix /usr/bin/ld: final link failed: File truncated error on hppa sergiodj+buildbot
2016-01-31 22:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-29 20:45 [binutils-gdb] Fix two misleading indentation warnings sergiodj+buildbot
2016-01-29 22:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-28 21:00 [binutils-gdb] Sync libiberty with GCC sergiodj+buildbot
2016-01-28 22:37 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-28 15:47 [binutils-gdb] Import strchrnul from gnulib and use it sergiodj+buildbot
2016-01-28 19:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-27 11:38 [binutils-gdb] Add Keith Seitz as Linespec Maintainer sergiodj+buildbot
2016-01-27 13:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-26 21:41 [binutils-gdb] Fix function comments sergiodj+buildbot
2016-01-26 23:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-26 14:48 [binutils-gdb] Remove argument pc in get_next_pcs sergiodj+buildbot
2016-01-26 21:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-26 14:03 [binutils-gdb] [GDBserver] Check input interrupt after reading in a packet sergiodj+buildbot
2016-01-26 15:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <a579cd9aa8c57c8a54833f26452a1afef38e5d20@gdb-build>
2016-01-26  0:47 ` sergiodj+buildbot
2016-01-25 16:27 [binutils-gdb] Remove new_thread_notify and dead_thread_notify sergiodj+buildbot
2016-01-25 21:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-25 16:18 [binutils-gdb] ARC/BFD: Fix a build error from `index' shadowing a global declaration sergiodj+buildbot
2016-01-25 20:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-25 15:24 [binutils-gdb] [PATCH[ARM]Check mapping symbol while backward searching for IT block sergiodj+buildbot
2016-01-25 18:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-25 13:48 [binutils-gdb] Fix PR 19461: strange "info thread" behavior in non-stop sergiodj+buildbot
2016-01-25 17:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <45f3854667c659ab053f51f96e1923f36e6e20ba@gdb-build>
2016-01-25 13:40 ` sergiodj+buildbot
2016-01-25 13:40 [binutils-gdb] Fix PR 19494: hang when killing unfollowed fork children sergiodj+buildbot
2016-01-25 16:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-25 13:32 [binutils-gdb] Move foreach_with_prefix to lib/gdb.exp sergiodj+buildbot
2016-01-25 14:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-25  9:54 [binutils-gdb] Add missing end-of-comment marker to previous delta. (Doh!) sergiodj+buildbot
2016-01-25 11:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-25  9:41 [binutils-gdb] Fix memory corruption on Mach-O systems by suppressing a memory tidy up sergiodj+buildbot
2016-01-25  9:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-24  1:27 [binutils-gdb] MIPS/BFD: Simplify register index calculation in BZ16_REG_FIELD sergiodj+buildbot
2016-01-24  3:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-24  1:16 [binutils-gdb] MIPS/BFD: Correct register index calculation in BZ16_REG sergiodj+buildbot
2016-01-24  2:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <dc29a1ce6a25233e608f90511e67af3c18e19a98@gdb-build>
2016-01-23 15:18 ` sergiodj+buildbot
     [not found] <cc5fd9abe4980e48e2cc27b0225f3c6ba7c0756b@gdb-build>
2016-01-23 12:44 ` sergiodj+buildbot
2016-01-22 21:00 [binutils-gdb] testsuite: gdb.gdb/selftest.exp: Drop expected Thread number sergiodj+buildbot
2016-01-22 23:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-22 20:50 [binutils-gdb] testsuite: Fix PR threads/19422 regression + Guile regression sergiodj+buildbot
2016-01-22 22:02 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-22 17:04 [binutils-gdb] Reword the string description of native FreeBSD ptids sergiodj+buildbot
2016-01-22 18:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <99e8eb11cfcdde8cba6755ed4613c3cb079dfaa4@gdb-build>
2016-01-22 15:28 ` sergiodj+buildbot
2016-01-22  9:39 [binutils-gdb] [testsuite] Unbuffer the output in gdb.base/multi-forks.c sergiodj+buildbot
2016-01-22 11:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-22  9:13 [binutils-gdb] [ARM] perror_with_name when failed to fetch/store registers sergiodj+buildbot
2016-01-22 10:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-22  1:15 [binutils-gdb] * breakpoint.c (init_breakpoint_sal): Add comment sergiodj+buildbot
2016-01-22  3:14 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <f906b857015513af81f94db8e11b1e334c767def@gdb-build>
2016-01-22  0:32 ` sergiodj+buildbot
2016-01-22  0:30 [binutils-gdb] * lib/ada.exp (gdb_compile_ada): Fix typo sergiodj+buildbot
2016-01-22  1:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 14:04 [binutils-gdb] Fix compile time errors building ARC target on a 32-bit host sergiodj+buildbot
2016-01-21 23:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 12:28 [binutils-gdb] gdb: Small cleanup to disasm.c:maybe_add_dis_line_entry sergiodj+buildbot
2016-01-21 21:50 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 11:45 [binutils-gdb] gdb: Respect CXXFLAGS when building with C++ compiler sergiodj+buildbot
2016-01-21 19:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 11:03 [binutils-gdb] Fix unexpected failures in the linker testsuite for ARM VxWorks targets sergiodj+buildbot
2016-01-21 18:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 10:33 [binutils-gdb] Fix regression introduced in "break *<EXPR>" by explicit location patches sergiodj+buildbot
2016-01-21 16:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 10:14 [binutils-gdb] [AArch64] Relax long branch veneer insertion for non STT_FUNC symbol sergiodj+buildbot
2016-01-21 15:26 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21 10:09 [binutils-gdb] Rename elf-linux-psinfo.h to elf-linux-core.h sergiodj+buildbot
2016-01-21 12:44 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21  9:57 [binutils-gdb] Convert macros in elf-linux-core.h to inline functions sergiodj+buildbot
2016-01-21 14:05 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21  9:40 [binutils-gdb] bfd/configure reorganisation sergiodj+buildbot
2016-01-21 10:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-21  8:17 [binutils-gdb] Detect the arm/thumb mode of code SIGRETURN or RT_SIGRETURN returns to sergiodj+buildbot
2016-01-21  9:30 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-20 19:03 [binutils-gdb] Fix sorting of enum values in FlagEnumerationPrinter sergiodj+buildbot
2016-01-20 21:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-20 18:53 [binutils-gdb] gnu_vector.exp: Respect `should_kfail' for PR 8549 sergiodj+buildbot
2016-01-20 20:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-20 17:40 [binutils-gdb] Fix missing IPA lib in tspeed.exp in some configurations sergiodj+buildbot
2016-01-20 18:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-20 14:43 [binutils-gdb] [AArch64] Reject invalid immediate operands to MSR UAO sergiodj+buildbot
2016-01-20 15:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-20 13:05 [binutils-gdb] Add support for an ARM specific 'y' section attribute flag to mark the section as NOREAD sergiodj+buildbot
2016-01-20 14:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-20  4:14 [binutils-gdb] minor reformatting in printcmd.c::print_scalar_formatted sergiodj+buildbot
2016-01-20 11:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 23:43 [binutils-gdb] Use a separate variable for the size passed to sysctl sergiodj+buildbot
2016-01-20 10:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 18:00 [binutils-gdb] Dump register notes for each thread when generating a FreeBSD core sergiodj+buildbot
2016-01-20  8:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 17:51 [binutils-gdb] Add support for LWP-based threads on FreeBSD sergiodj+buildbot
2016-01-20  7:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 17:43 [binutils-gdb] Use LWP IDs with ptrace register requests on FreeBSD sergiodj+buildbot
2016-01-20  6:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 17:34 [binutils-gdb] Display per-thread information for threads in FreeBSD cores sergiodj+buildbot
2016-01-20  4:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 17:26 [binutils-gdb] Add support for extracting thread names from cores sergiodj+buildbot
2016-01-20  3:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 17:18 [binutils-gdb] Add a pseudosection for the NT_FREEBSD_THRMISC note sergiodj+buildbot
2016-01-20  2:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 17:09 [binutils-gdb] Add support to readelf for reading FreeBSD ELF core notes sergiodj+buildbot
2016-01-20  0:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 16:43 [binutils-gdb] Fix enum flag with Python 3 sergiodj+buildbot
2016-01-19 23:34 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 16:35 [binutils-gdb] testsuite: Factor out --status in DO_RUNTEST sergiodj+buildbot
2016-01-19 22:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 16:07 [binutils-gdb] testsuite: Add --status to runtest invocation sergiodj+buildbot
2016-01-19 20:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 15:58 [binutils-gdb] testsuite: Make check-parallel return non-zero if a test failed sergiodj+buildbot
2016-01-19 19:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 15:50 [binutils-gdb] Fix detection of "r_fs" and "r_gs" on FreeBSD sergiodj+buildbot
2016-01-19 18:11 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-19 15:37 [binutils-gdb] Add PIC and TLS support to the ARC target sergiodj+buildbot
2016-01-19 16:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
     [not found] <bd0a71fa16f668341a9361c695bc3ca44d27b322@gdb-build>
2016-01-19 13:32 ` sergiodj+buildbot
2016-01-19 12:38 [binutils-gdb] Limit breakpoint re-set to the current program space sergiodj+buildbot
2016-01-19 15:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 22:31 [binutils-gdb] MIPS: Remove remnants of 48-bit microMIPS instruction support sergiodj+buildbot
2016-01-19  2:40 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 22:01 [binutils-gdb] MIPS: Only build microMIPS specific simulator functions if microMIPS support is required sergiodj+buildbot
2016-01-19  1:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 21:22 [binutils-gdb] MIPS: Fix microMIPS instruction size determination sergiodj+buildbot
2016-01-19  0:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 17:08 [binutils-gdb] testsuite: Remove unused global references in gdb_test sergiodj+buildbot
2016-01-18 22:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 16:11 [binutils-gdb] Use a 32-bit value to hold the section number in the internal COFF symbol structure sergiodj+buildbot
2016-01-18 21:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 16:03 [binutils-gdb] Fix PR threads/19422 - show which thread caused stop sergiodj+buildbot
2016-01-18 19:56 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 15:19 [binutils-gdb] Replace some $ARCH_{get, set}_pc with linux_{get, set}_pc_64bit sergiodj+buildbot
2016-01-18 18:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 15:11 [binutils-gdb] Replace some $ARCH_{get, set}_pc with linux_{get, set}_pc_32bit sergiodj+buildbot
2016-01-18 17:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 14:40 [binutils-gdb] [testsuite] @progbits -> %progbits sergiodj+buildbot
2016-01-18 15:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 12:05 [binutils-gdb] Provide AC_PROG_LEX that copes with LEX=missing from top-level sergiodj+buildbot
2016-01-18 14:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-18 11:57 [binutils-gdb] Fix gdbserver build failure on targets without fork sergiodj+buildbot
2016-01-18 13:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-17  7:04 [binutils-gdb] GDB SIGSEGV opening a Fortran program compiled with ifort sergiodj+buildbot
2016-01-17 10:59 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-17  6:17 [binutils-gdb] fix gdb version parsing in src-release.sh sergiodj+buildbot
2016-01-17  9:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-17  6:14 [binutils-gdb] Minor comment fixes in sim/common/sim-fpu.c sergiodj+buildbot
2016-01-17  8:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-17  5:43 [binutils-gdb] minor reformatting in sim/common/sim-fpu.c sergiodj+buildbot
2016-01-17  6:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-17  3:05 [binutils-gdb] Regen configure sergiodj+buildbot
2016-01-17  4:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-15 22:55 [binutils-gdb] Fix phony_iconv wide character support sergiodj+buildbot
2016-01-16  1:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-15 22:25 [binutils-gdb] Star wildcard ranges (e.g., "info thread 2.*") sergiodj+buildbot
2016-01-16  0:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-15 21:59 [binutils-gdb] Fix "thread apply $conv_var" and misc other related problems sergiodj+buildbot
2016-01-15 23:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-14 16:27 [binutils-gdb] Fix display of RL78 MOVW instructions that use the stack pointer sergiodj+buildbot
2016-01-14 17:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-14 14:57 [binutils-gdb] [ARM] Remove field syscall_next_pc in struct gdbarch_tdep sergiodj+buildbot
2016-01-14 16:17 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-14 12:30 [binutils-gdb] Fix C++ build error by casting void * sergiodj+buildbot
2016-01-14 13:51 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-14 11:03 [binutils-gdb] [AArch64] Fix missing architecture checks for ARMv8.2 system registers sergiodj+buildbot
2016-01-14 12:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-14  9:39 [binutils-gdb] [ARM] Make thumb2_breakpoint static again sergiodj+buildbot
2016-01-14 11:00 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 18:04 [binutils-gdb] MAINTAINERS: Add Andreas Arnez as s390 target maintainer sergiodj+buildbot
2016-01-14  0:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 16:19 [binutils-gdb] Read instruction with byte_order_for_code sergiodj+buildbot
2016-01-13 23:10 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:42 [binutils-gdb] Add $_gthread convenience variable sergiodj+buildbot
2016-01-13 21:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:41 [binutils-gdb] Implement "info threads -gid" sergiodj+buildbot
2016-01-13 20:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:40 [binutils-gdb] Add Python InferiorThread.global_num attribute sergiodj+buildbot
2016-01-13 19:07 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:39 [binutils-gdb] Per-inferior/Inferior-qualified thread IDs sergiodj+buildbot
2016-01-13 17:46 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:38 [binutils-gdb] Centralize thread ID printing sergiodj+buildbot
2016-01-13 16:25 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:36 [binutils-gdb] Add Python InferiorThread.inferior attribute sergiodj+buildbot
2016-01-13 15:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 11:35 [binutils-gdb] Add a new $_inferior convenience variable sergiodj+buildbot
2016-01-13 13:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-13 10:52 [binutils-gdb] Fix PR19388: Can't access $_siginfo in breakpoint (catch signal) condition sergiodj+buildbot
2016-01-13 12:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 20:34 [binutils-gdb] Implement 'catch syscall' for gdbserver sergiodj+buildbot
2016-01-13  5:45 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 16:49 [binutils-gdb] Sync top-level btool.m4 with GCC sergiodj+buildbot
2016-01-13  4:24 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 16:46 [binutils-gdb] [ARM] Support ARMv8.2 RAS extension sergiodj+buildbot
2016-01-13  3:03 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 16:41 [binutils-gdb] Add cantunwind when unwind info does not match start of section sergiodj+buildbot
2016-01-13  1:42 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 16:37 [binutils-gdb] Sync top-level Makefile.def with GCC sergiodj+buildbot
2016-01-13  0:22 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 16:34 [binutils-gdb] Fix invalid conversion from void * to gdb_byte * sergiodj+buildbot
2016-01-12 23:01 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 15:45 [binutils-gdb] gdbserver: use the new gdb warning helpers sergiodj+buildbot
2016-01-12 21:41 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 15:44 [binutils-gdb] gdbserver: fix various warnings sergiodj+buildbot
2016-01-12 20:20 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 15:22 [binutils-gdb] Change function signature passed to clone sergiodj+buildbot
2016-01-12 18:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 15:09 [binutils-gdb] Remove trademark acknowledgements throughout sergiodj+buildbot
2016-01-12 17:06 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 13:13 [binutils-gdb] Test gdb.base/random-signal.exp with "attach" sergiodj+buildbot
2016-01-12 14:43 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12 12:01 [binutils-gdb] Hurd: Make gdb/reply_mig_hack.awk script compatible to "mawk" sergiodj+buildbot
2016-01-12 13:23 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12  6:46 [binutils-gdb] sim: mips: workaround 32-bit addr sign extensions sergiodj+buildbot
2016-01-12  8:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-12  1:37 [binutils-gdb] Reapply: List inferiors/threads/pspaces in ascending order sergiodj+buildbot
2016-01-12  2:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11 21:31 [binutils-gdb] testsuite: i386 regression for funcargs.exp sergiodj+buildbot
2016-01-12  1:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11 21:25 [binutils-gdb] testsuite: Regression for foll-vfork.exp sergiodj+buildbot
2016-01-11 23:58 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11 21:16 [binutils-gdb] testsuite: Fix false FAILs on too long base directory sergiodj+buildbot
2016-01-11 22:38 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11 19:13 [binutils-gdb] gdb: split out warnings helpers sergiodj+buildbot
2016-01-11 20:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11 18:06 [binutils-gdb] Delete opcodes that have been removed from ISA 3.0 sergiodj+buildbot
2016-01-11 19:19 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11 11:18 [binutils-gdb] Import changes made to files shared with the FSF GCC project sergiodj+buildbot
2016-01-11 12:31 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11  6:11 [binutils-gdb] sim: config: do not try to align settings sergiodj+buildbot
2016-01-11  7:55 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-11  0:08 [binutils-gdb] sim: move many common settings from CPPFLAGS to config.h sergiodj+buildbot
2016-01-11  3:39 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10 23:15 [binutils-gdb] sim: drop unused SIM_AC_OPTION_PACKAGES sergiodj+buildbot
2016-01-11  2:18 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10 22:28 [binutils-gdb] sim: allow the environment configure option everywhere sergiodj+buildbot
2016-01-11  0:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10 22:20 [binutils-gdb] sim: allow the assert configure option everywhere sergiodj+buildbot
2016-01-10 23:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10  9:12 [binutils-gdb] sim: drop targ-vals.def->nltvals.def indirection sergiodj+buildbot
2016-01-10 14:57 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10  8:59 [binutils-gdb] sim: mips: drop SIM_AC_OPTION_SMP call sergiodj+buildbot
2016-01-10 13:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10  8:51 [binutils-gdb] sim: allow the inline configure option everywhere sergiodj+buildbot
2016-01-10 12:16 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10  8:33 [binutils-gdb] sim: drop --enable-sim-{regparm,stdcall} options sergiodj+buildbot
2016-01-10 10:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-10  8:17 [binutils-gdb] sim: drop --enable-sim-cflags option sergiodj+buildbot
2016-01-10  9:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-09  9:24 [binutils-gdb] sim: stop configuring common subdir sergiodj+buildbot
2016-01-09 11:36 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-09  9:01 [binutils-gdb] sim: drop common/cconfig.h in favor of a single config.h sergiodj+buildbot
2016-01-09 10:15 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-08 19:16 [binutils-gdb] Fix gdb.multi/base.exp testsuite regression sergiodj+buildbot
2016-01-08 20:29 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-08 15:34 [binutils-gdb] perf testsuite: python 3 fixes sergiodj+buildbot
2016-01-08 16:47 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-08 11:25 [binutils-gdb] Change SIGINT handler for extension languages only when target terminal is ours sergiodj+buildbot
2016-01-08 15:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-08 11:16 [binutils-gdb] Check input interrupt first when reading packet sergiodj+buildbot
2016-01-08 13:54 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-08 10:52 [binutils-gdb] m68k: fix constraints of move.[bw] for ISA_B/C sergiodj+buildbot
2016-01-08 12:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-08  9:58 [binutils-gdb] [ARM] PR ld/19368: Add missing relocation type class for R_ARM_IRELATIVE sergiodj+buildbot
2016-01-08 11:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-07 19:37 [binutils-gdb] MIPS: Complete `status' to `err' renaming in `mips_breakpoint_from_pc' sergiodj+buildbot
2016-01-07 20:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-07  3:07 [binutils-gdb] sim: config: drop use of __DATE__/__TIME__ sergiodj+buildbot
2016-01-07  5:33 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-07  2:58 [binutils-gdb] sim: sim_{create_inferior, open, parse_args}: constify argv/env slightly sergiodj+buildbot
2016-01-07  4:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06 18:52 [binutils-gdb] MIPS/include: opcode/mips.h: Add a summary of MIPS16 operand codes sergiodj+buildbot
2016-01-06 21:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06 15:34 [binutils-gdb] Make {arm,thumb}_get_next_pcs_raw static sergiodj+buildbot
2016-01-06 20:13 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06 15:10 [binutils-gdb] [ARM/AArch64] Fix -Werror=unused-const-variable warnings in GDBserver sergiodj+buildbot
2016-01-06 18:53 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06 14:28 [binutils-gdb] bfd/arc: Add R_ prefix to all relocation names sergiodj+buildbot
2016-01-06 17:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06 11:46 [binutils-gdb] Fix gdb.python/py-infthread.exp test message typo sergiodj+buildbot
2016-01-06 16:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06  5:52 [binutils-gdb] Change copyright owner to FSF in sim/testsuite/sim/mips/hilo-hazard-4.s sergiodj+buildbot
2016-01-06 14:52 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-06  4:40 [binutils-gdb] gdb: change version stamp to git sergiodj+buildbot
2016-01-06 13:32 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 23:23 [binutils-gdb] libiberty: dupargv: rewrite to use xstrdup sergiodj+buildbot
2016-01-06 10:49 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 23:03 [binutils-gdb] libiberty: {count, dup, write}argv: constify argv input slightly sergiodj+buildbot
2016-01-06 12:12 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 22:29 [binutils-gdb] libiberty: Tweak the documentation of libiberty's xcrc32 function sergiodj+buildbot
2016-01-06  9:28 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 22:21 [binutils-gdb] libiberty: fix warnings about left shifting a negative value sergiodj+buildbot
2016-01-06  8:08 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 22:13 [binutils-gdb] gdb: score: drop sim file check sergiodj+buildbot
2016-01-06  6:48 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 21:27 [binutils-gdb] sim: msp430: drop duplicate sim_load_file call sergiodj+buildbot
2016-01-06  5:27 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 21:02 [binutils-gdb] sim: aarch64: switch to common disassembler tracing sergiodj+buildbot
2016-01-06  3:35 ` Failures on Fedora-ppc64le-m64, branch master sergiodj+buildbot
2016-01-05 20:39 [binutils-gdb] sim: bfin: add support disasm tracing sergiodj+buildbot
2016-01-06  2:15 ` Failures on Fedora-ppc64le-m64, branch master 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).