public inbox for gdb-testers@sourceware.org
help / color / mirror / Atom feed
* Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch
@ 2015-02-17 15:08 sergiodj
  2015-02-17 15:15 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj
                   ` (12 more replies)
  0 siblings, 13 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 15:08 UTC (permalink / raw)
  To: gdb-testers

*** TEST RESULTS FOR COMMIT 5991bec1d4dbd23b476dc90bc6d1ba70e044898e ***

Author: Pedro Alves <palves@redhat.com>
Branch: gdb-7.9-branch
Commit: 5991bec1d4dbd23b476dc90bc6d1ba70e044898e

Simplify event-loop core, remove two-step event processing
Even with the previous patch installed, we'll still see
sigall-reverse.exp occasionally fail.  The problem is that the event
loop's event handling processing is done in two steps:

 #1 - poll all event sources, and push new event objects to the event
  queue, until all event sources are drained.

 #2 - go through the event queue, processing each event object at a
  time.  For each event, call the associated callback, and deletes the
  event object from the queue.

and then bad things happen if between #1 and #2 something decides that
events from an event source that has already queued events shouldn't
be processed yet.  To do that, we either remove the event source from
the list of event sources, or clear its "have events" flag.  However,
if an event for that source has meanwhile already been pushed in the
event queue, #2 will still process it and call the associated
callback...

One way to fix it that I considered was to do something to the event
objects already in the event queue when an event source is no longer
interesting.  But then I couldn't find any good reason for the
two-step process in the first place.  It's much simpler (and less
code) to call the event source callbacks as we poll the sources and
find events.

Tested on x86-64 Fedora 20, native and gdbserver.

gdb/
2015-02-17  Pedro Alves  <palves@redhat.com>

	* event-loop.c: Don't declare nor define a queue type for
	gdb_event_p.
	(event_queue): Delete.
	(create_event, create_file_event, gdb_event_xfree)
	(initialize_event_loop, process_event): Delete.
	(gdb_do_one_event): Return as soon as one event is handled.
	(handle_file_event): Change prototype.  Used the passed in
	file_handler pointer and ready_mask instead of looping over all
	file handlers.
	(gdb_wait_for_event): Update the poll/select timeouts before
	blocking.  Run event handlers directly instead of queueing events.
	Return as soon as one event is handled.
	(struct async_event_handler_data): Delete.
	(invoke_async_event_handler): Delete.
	(check_async_event_handlers): Change return type to int.  Run
	event handlers directly instead of queueing events.  Return as
	soon as one event is handled.
	(handle_timer_event): Delete.
	(update_wait_timeout): New function, factored out from
	poll_timers.
	(poll_timers): Reimplement.
	* event-loop.h (initialize_event_loop): Delete declaration.
	* top.c (gdb_init): Don't call initialize_event_loop.


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

* Failures on Fedora-ppc64be-cc-with-index, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
@ 2015-02-17 15:15 ` sergiodj
  2015-02-17 15:28 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj
                   ` (11 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 15:15 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on native core dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on native core dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and core
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
============================




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

* Failures on Fedora-x86_64-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
  2015-02-17 15:15 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj
@ 2015-02-17 15:28 ` sergiodj
  2015-02-17 15:37 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj
                   ` (10 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 15:28 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/258>

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
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)
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: 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: 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: 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: 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: 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: 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: detach (the program is no longer running)
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 1
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 2
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break at break_fn: 3
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: attach (got interactive prompt)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 1 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 2 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break at break_fn: 3 (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach (the program is no longer running)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: set breakpoint always-inserted on (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: set breakpoint always-inserted on (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 1 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 2 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break at break_fn: 3 (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted off (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: set breakpoint always-inserted on (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: set breakpoint always-inserted on (got interactive prompt)
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: next over function call
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 10: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 4: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 5: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 6: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 7: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 8: no new threads (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: break break_fn (GDB internal error)
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: detach
FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 9: no new threads (GDB internal error)
============================




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

* Failures on Fedora-ppc64be-native-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
  2015-02-17 15:15 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj
  2015-02-17 15:28 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj
@ 2015-02-17 15:37 ` sergiodj
  2015-02-17 15:44 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj
                   ` (9 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 15:37 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.mi/mi-watch-nonstop.exp: resume 1 (MI error)
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
============================




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

* Failures on Fedora-x86_64-native-gdbserver-m32, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (2 preceding siblings ...)
  2015-02-17 15:37 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj
@ 2015-02-17 15:44 ` sergiodj
  2015-02-17 16:07 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
                   ` (8 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 15:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-x86-64-2

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/exitsignal.exp: program terminated with SIGSEGV (timeout)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #38 (stepping inside range 201 times)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 21 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 22 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 23 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 24 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 25 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 26 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 27 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 28 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 29 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 30 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 31 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 32 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 33 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 34 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 35 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 36 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 37 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 38 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 39 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 40 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 41 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 42 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 43 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 44 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 45 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 46 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 47 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 48 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 49 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 50 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 51 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 52 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 53 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 54 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 55 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 56 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 57 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 58 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 59 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 60 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 61 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 62 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 63 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 64 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 65 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 66 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 67 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 68 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 69 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 70 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 71 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 72 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 73 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 74 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 75 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 76 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 77 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 78 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 79 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 80 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 80 on watched_data (the program is no longer running)
PASS -> FAIL: gdb.threads/wp-replication.exp: Thread 3 hit breakpoint at thread_started
PASS -> FAIL: gdb.threads/wp-replication.exp: Thread 6 hit breakpoint at thread_started
new FAIL: gdb.threads/wp-replication.exp: Thread 7 hit breakpoint at thread_started (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Thread 8 hit breakpoint at thread_started (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Thread 9 hit breakpoint at thread_started (the program is no longer running)
PASS -> FAIL: gdb.threads/wp-replication.exp: set var test_ready=1
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/exitsignal.exp: program terminated with SIGSEGV (timeout)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #38 (stepping inside range 201 times)
PASS -> FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started <<2>>
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 1 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 10 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 11 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 12 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 13 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 14 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 15 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 16 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 17 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 18 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 19 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 2 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 20 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 21 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 22 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 23 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 24 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 25 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 26 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 27 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 28 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 29 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 3 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 30 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 31 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 32 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 33 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 34 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 35 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 36 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 37 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 38 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 39 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 4 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 40 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 41 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 42 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 43 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 44 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 45 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 46 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 47 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 48 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 49 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 5 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 50 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 51 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 52 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 53 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 54 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 55 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 56 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 57 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 58 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 59 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 6 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 60 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 61 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 62 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 63 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 64 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 65 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 66 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 67 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 68 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 69 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 7 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 70 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 71 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 72 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 73 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 74 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 75 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 76 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 77 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 78 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 79 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 8 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 80 out of 80 on watched_data (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Continue to watchpoint trigger 9 out of 80 on watched_data (the program is no longer running)
PASS -> FAIL: gdb.threads/wp-replication.exp: Thread 3 hit breakpoint at thread_started
PASS -> FAIL: gdb.threads/wp-replication.exp: Thread 6 hit breakpoint at thread_started
new FAIL: gdb.threads/wp-replication.exp: Thread 7 hit breakpoint at thread_started (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Thread 8 hit breakpoint at thread_started (the program is no longer running)
new FAIL: gdb.threads/wp-replication.exp: Thread 9 hit breakpoint at thread_started (the program is no longer running)
PASS -> FAIL: gdb.threads/wp-replication.exp: set var test_ready=1
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.ada/interface.exp: print s
FAIL: gdb.ada/iwide.exp: print My_Drawable
FAIL: gdb.ada/iwide.exp: print d_access.all
FAIL: gdb.ada/iwide.exp: print dp_access.all
FAIL: gdb.ada/iwide.exp: print s_access.all
FAIL: gdb.ada/iwide.exp: print sp_access.all
FAIL: gdb.ada/mi_interface.exp: Create ggg1 varobj
FAIL: gdb.ada/mi_interface.exp: list ggg1's children
FAIL: gdb.ada/ptype_tagged_param.exp: ptype s
FAIL: gdb.ada/str_uninit.exp: print my_str
FAIL: gdb.ada/tagged.exp: print obj
FAIL: gdb.ada/tagged.exp: ptype obj
FAIL: gdb.ada/tagged_access.exp: ptype c.all
FAIL: gdb.ada/tagged_access.exp: ptype c.menu_name
FAIL: gdb.threads/next-bp-other-thread.exp: schedlock=off: next over function call
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: breakpoint on thread_function0's caller (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: delete 5 (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: let local watchpoint trigger (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: let thread_function0 return (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint automatically deleted (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint is still in breakpoint list (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: local watchpoint still triggers (timeout)
FAIL: gdb.threads/local-watch-wrong-thread.exp: the other thread stopped on breakpoint (timeout)
FAIL: gdb.base/disp-step-syscall.exp: vfork: continue to marker (vfork)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (3 preceding siblings ...)
  2015-02-17 15:44 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj
@ 2015-02-17 16:07 ` sergiodj
  2015-02-17 17:48 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj
                   ` (7 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 16:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64le-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (4 preceding siblings ...)
  2015-02-17 16:07 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
@ 2015-02-17 17:48 ` sergiodj
  2015-02-17 17:52 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj
                   ` (6 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 17:48 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64le-1

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
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 (got interactive prompt)
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: no new threads (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 3: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/corefile.exp: attach: core file is cleared
PASS -> FAIL: gdb.base/corefile.exp: attach: with core
PASS -> FAIL: gdb.base/corefile.exp: run: core file is cleared
PASS -> FAIL: gdb.base/corefile.exp: run: with core
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
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)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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 (got interactive prompt)
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: detach (the program is no longer running)
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 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: 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: 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: 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: 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: 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: detach (the program is no longer running)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: all dummies popped
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 3
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 4
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 5
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 3
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 4
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 5
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================




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

* Failures on Fedora-ppc64le-cc-with-index, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (5 preceding siblings ...)
  2015-02-17 17:48 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj
@ 2015-02-17 17:52 ` sergiodj
  2015-02-17 17:59 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj
                   ` (5 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 17:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64le-1

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #0 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #10 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #12 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #13 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #15 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #17 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #19 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #2 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #36 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #4 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #6 (stepping inside range 201 times)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #10 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #11 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #12 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #13 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #14 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #15 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #17 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #19 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #2 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #20 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #3 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #36 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #4 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #6 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #7 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #9 (stepping inside range 201 times)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
============================




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

* Failures on Fedora-ppc64le-native-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (6 preceding siblings ...)
  2015-02-17 17:52 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj
@ 2015-02-17 17:59 ` sergiodj
  2015-02-17 19:06 ` Failures on Fedora-ppc64le-m64, " sergiodj
                   ` (4 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 17:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64le-1

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #25 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #8 (stepping inside range 201 times)
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #25 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #8 (stepping inside range 201 times)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: all dummies popped
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 2
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 3
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 4
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: dummy stack frame number, thread 5
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 2
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 3
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 4
PASS -> FAIL: gdb.threads/hand-call-in-threads.exp: hand call, thread 5
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
============================




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

* Failures on Fedora-ppc64le-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (7 preceding siblings ...)
  2015-02-17 17:59 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj
@ 2015-02-17 19:06 ` sergiodj
  2015-02-17 19:11 ` Failures on Debian-i686, " sergiodj
                   ` (3 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 19:06 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64le-1

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #14 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #26 (stepping inside range 201 times)
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #36 (stepping inside range 201 times)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.base/gdb-sigterm.exp: expect eof #36 (stepping inside range 201 times)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: finish (timeout)
============================




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

* Failures on Debian-i686, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (8 preceding siblings ...)
  2015-02-17 19:06 ` Failures on Fedora-ppc64le-m64, " sergiodj
@ 2015-02-17 19:11 ` sergiodj
  2015-02-17 19:25 ` Failures on Debian-x86_64-m64, " sergiodj
                   ` (2 subsequent siblings)
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 19:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	wildebeest-debian-wheezy-i686

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

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/longjmp.exp: next over patt3
============================




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

* Failures on Debian-x86_64-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (9 preceding siblings ...)
  2015-02-17 19:11 ` Failures on Debian-i686, " sergiodj
@ 2015-02-17 19:25 ` sergiodj
  2015-02-17 19:41 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj
  2015-02-17 20:14 ` Failures on Debian-x86_64-native-gdbserver-m64, " sergiodj
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 19:25 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/203>

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
new FAIL: gdb.mi/mi-logging.exp: redirect logging off (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.mi/mi-logging.exp: redirect logging off (timeout)
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.dwarf2/gdb-index.exp: touch binary
============================




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

* Failures on Debian-i686-native-extended-gdbserver, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (10 preceding siblings ...)
  2015-02-17 19:25 ` Failures on Debian-x86_64-m64, " sergiodj
@ 2015-02-17 19:41 ` sergiodj
  2015-02-17 20:14 ` Failures on Debian-x86_64-native-gdbserver-m64, " sergiodj
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 19:41 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/149>

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: breakpoint at main
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/dyn_arrayidx.exp: compilation foo.adb
new FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_func (the program is no longer running)
new FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_1 (the program is no longer running)
new FAIL: gdb.cp/extern-c.exp: continue to breakpoint: c_funcs_2 (the program is no longer running)
new FAIL: gdb.cp/extern-c.exp: verify counter at first breakpoint
new FAIL: gdb.cp/extern-c.exp: verify counter at second breakpoint
new FAIL: gdb.cp/formatted-ref.exp: print s.x == 13
new FAIL: gdb.cp/formatted-ref.exp: print/x &e
new FAIL: gdb.cp/formatted-ref.exp: print/x &i
new FAIL: gdb.cp/formatted-ref.exp: print/x &s
new FAIL: gdb.cp/formatted-ref.exp: print/x *(&(&e))
new FAIL: gdb.cp/formatted-ref.exp: print/x *(&(&i))
new FAIL: gdb.cp/formatted-ref.exp: print/x *(&(&s))
new FAIL: gdb.cp/formatted-ref.exp: print/x e
new FAIL: gdb.cp/formatted-ref.exp: print/x i
new FAIL: gdb.cp/mb-inline.exp: Can't run to main for multi_line_foo tests.
new FAIL: gdb.cp/mb-inline.exp: disabling location: run to breakpoint
new FAIL: gdb.cp/mb-inline.exp: run to breakpoint
new FAIL: gdb.cp/mb-inline.exp: run to breakpoint 2 (the program is no longer running)
new FAIL: gdb.cp/mb-templates.exp: Can't run to main for multi_line_foo tests.
new FAIL: gdb.cp/mb-templates.exp: disable breakpoint: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: disabling location: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: initial condition: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: initial condition: run to breakpoint 2 (the program is no longer running)
new FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: instantiation: run to breakpoint 2 (the program is no longer running)
new FAIL: gdb.cp/mb-templates.exp: separate condition: run to breakpoint
new FAIL: gdb.cp/mb-templates.exp: separate condition: run to breakpoint 2 (the program is no longer running)
new FAIL: gdb.cp/misc.exp: expression using block qualifier
new FAIL: gdb.cp/misc.exp: set a bool array elem (print v_bool_array)
new FAIL: gdb.cp/misc.exp: set a bool array elem (setup)
new FAIL: gdb.cp/misc.exp: set a bool var (print v_bool)
new FAIL: gdb.cp/misc.exp: set a bool var (setup)
new FAIL: gdb.cp/ref-params.exp: print f1(MQR)
new FAIL: gdb.cp/ref-params.exp: print mf1(MQ)
new FAIL: gdb.cp/ref-params.exp: print mf1(MQR)
new FAIL: gdb.cp/ref-params.exp: print mf2(MQ)
new FAIL: gdb.cp/ref-params.exp: print mf2(MQR)
new FAIL: gdb.cp/ref-params.exp: print value of f1 on Child in main
new FAIL: gdb.cp/ref-params.exp: print value of f1 on Child& in f2
new FAIL: gdb.cp/ref-params.exp: print value of f2 on Child in main
new FAIL: gdb.cp/templates.exp: continue to line 770 (the program is no longer running)
new FAIL: gdb.cp/templates.exp: print fint
new FAIL: gdb.cp/templates.exp: print fvpchar
new FAIL: gdb.cp/templates.exp: ptype bazint
new FAIL: gdb.cp/templates.exp: ptype bazint2
new FAIL: gdb.cp/templates.exp: ptype bint
new FAIL: gdb.cp/templates.exp: ptype bint2
new FAIL: gdb.cp/templates.exp: ptype fchar
new FAIL: gdb.cp/templates.exp: ptype fint
new FAIL: gdb.cp/templates.exp: ptype fvpchar
new FAIL: gdb.cp/templates.exp: ptype quxint
new FAIL: gdb.cp/templates.exp: ptype siip
new FAIL: gdb.go/chan.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.go/chan.exp: Going to second breakpoint (the program is no longer running)
new FAIL: gdb.go/handcall.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.go/handcall.exp: print add (1, 2)
new FAIL: gdb.go/handcall.exp: print main.add (1, 2)
new FAIL: gdb.go/hello.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.go/hello.exp: Going to second breakpoint (the program is no longer running)
new FAIL: gdb.go/hello.exp: String after assignment check
new FAIL: gdb.go/integers.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.go/integers.exp: Going to second breakpoint (the program is no longer running)
new FAIL: gdb.go/integers.exp: Next to 'i = 1' line (the program is no longer running)
new FAIL: gdb.go/integers.exp: Next to 'j = 2' line (the program is no longer running)
new FAIL: gdb.go/integers.exp: Next to 'k = 3' line (the program is no longer running)
new FAIL: gdb.go/integers.exp: Next to 'l = k' line (the program is no longer running)
new FAIL: gdb.go/integers.exp: Print i before assigned to 1
new FAIL: gdb.go/integers.exp: Test j value before assignment
new FAIL: gdb.go/integers.exp: Testing new i value
new FAIL: gdb.go/integers.exp: Value of i after assignment
new FAIL: gdb.go/integers.exp: print (-i)
new FAIL: gdb.go/integers.exp: print (i + 5) * (j + 7)
new FAIL: gdb.go/integers.exp: print -(i)
new FAIL: gdb.go/integers.exp: print -(i+j)
new FAIL: gdb.go/integers.exp: print -i
new FAIL: gdb.go/integers.exp: print 2 * i
new FAIL: gdb.go/integers.exp: print 3000*i
new FAIL: gdb.go/integers.exp: print i
new FAIL: gdb.go/integers.exp: print i + 1 != j
new FAIL: gdb.go/integers.exp: print i + 1 < j
new FAIL: gdb.go/integers.exp: print i + 1 <= j
new FAIL: gdb.go/integers.exp: print i + 1 == j
new FAIL: gdb.go/integers.exp: print i + 1 > j
new FAIL: gdb.go/integers.exp: print i + 1 >= j
new FAIL: gdb.go/integers.exp: print i + j
new FAIL: gdb.go/integers.exp: print i + j + k
new FAIL: gdb.go/integers.exp: print i + k
new FAIL: gdb.go/integers.exp: print i - j
new FAIL: gdb.go/integers.exp: print i+10*j+100*k
new FAIL: gdb.go/integers.exp: print j
new FAIL: gdb.go/integers.exp: print j * k
new FAIL: gdb.go/integers.exp: print j + k
new FAIL: gdb.go/integers.exp: print j - i
new FAIL: gdb.go/integers.exp: print k
new FAIL: gdb.go/integers.exp: print k -(i + j)
new FAIL: gdb.go/integers.exp: print k -i -j
new FAIL: gdb.go/integers.exp: print l
new FAIL: gdb.go/integers.exp: set var i = 2
new FAIL: gdb.go/methods.exp: setting breakpoint at (*main.T).Bar
new FAIL: gdb.go/package.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.go/strings.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.go/unsafe.exp: Going to first breakpoint (the program is no longer running)
new FAIL: gdb.java/jmisc.exp: continue to breakpoint: jmisc.main(java.lang.String[]) (the program is no longer running)
new FAIL: gdb.java/jmisc.exp: continue to exit (the program is no longer running)
new FAIL: gdb.java/jmisc.exp: p *args
new FAIL: gdb.java/jmisc.exp: p args
new FAIL: gdb.java/jmisc.exp: setting breakpoint at exit
new FAIL: gdb.java/jprint.exp: continue to breakpoint: jprint.main(java.lang.String[]) (the program is no longer running)
new FAIL: gdb.java/jprint.exp: double argument call
new FAIL: gdb.java/jprint.exp: inherited static call
new FAIL: gdb.java/jprint.exp: inherited virtual fn call
new FAIL: gdb.java/jprint.exp: print a java.lang.String
new FAIL: gdb.java/jprint.exp: single argument call
new FAIL: gdb.java/jprint.exp: unambiguous static call
new FAIL: gdb.java/jprint.exp: virtual fn call
new FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere (the program is no longer running)
new FAIL: gdb.linespec/break-ask.exp: continue to breakpoint: body_elsewhere other (the program is no longer running)
new FAIL: gdb.linespec/break-ask.exp: expect breakpoint
new FAIL: gdb.linespec/break-ask.exp: expect breakpoint other
new FAIL: gdb.linespec/break-ask.exp: info source
new FAIL: gdb.linespec/break-ask.exp: info source other
new FAIL: gdb.mi/gdb2549.exp: register values d
new FAIL: gdb.mi/gdb2549.exp: register values f
new FAIL: gdb.mi/gdb2549.exp: register values o
new FAIL: gdb.mi/gdb2549.exp: register values t
new FAIL: gdb.mi/gdb669.exp: -thread-list-ids (try 0)
new FAIL: gdb.mi/gdb669.exp: -thread-list-ids (try 1)
new FAIL: gdb.mi/gdb669.exp: -thread-list-ids (try 2)
new FAIL: gdb.mi/gdb669.exp: -thread-list-ids (try 3)
new FAIL: gdb.mi/gdb669.exp: -thread_list_ids (try 0)
new FAIL: gdb.mi/gdb669.exp: -thread_list_ids (try 1)
new FAIL: gdb.mi/gdb669.exp: -thread_list_ids (try 2)
new FAIL: gdb.mi/gdb669.exp: -thread_list_ids (try 3)
new FAIL: gdb.mi/gdb669.exp: finding MI result string (at main)
new FAIL: gdb.mi/gdb669.exp: finding number of threads in MI output (at main)
new FAIL: gdb.mi/gdb669.exp: next, try 0 (MI error)
new FAIL: gdb.mi/gdb669.exp: next, try 0 (timeout)
new FAIL: gdb.mi/gdb669.exp: next, try 1 (MI error)
new FAIL: gdb.mi/gdb669.exp: next, try 1 (timeout)
new FAIL: gdb.mi/gdb669.exp: next, try 2 (MI error)
new FAIL: gdb.mi/gdb669.exp: next, try 2 (timeout)
new FAIL: gdb.mi/gdb669.exp: next, try 3 (MI error)
new FAIL: gdb.mi/gdb669.exp: next, try 3 (timeout)
new FAIL: gdb.mi/gdb701.exp: create fooPtr
new FAIL: gdb.mi/gdb701.exp: list children of fooPtr
new FAIL: gdb.mi/gdb701.exp: list children of fooPtr.x
new FAIL: gdb.mi/gdb701.exp: list children of fooPtr.y
new FAIL: gdb.mi/gdb701.exp: list children of fooPtr.z
new FAIL: gdb.mi/gdb701.exp: step over "foo = 0" (unknown output after running)
new FAIL: gdb.mi/gdb792.exp: create var for class C which has baseclass A
new FAIL: gdb.mi/gdb792.exp: list children of A.private
new FAIL: gdb.mi/gdb792.exp: list children of A.protected
new FAIL: gdb.mi/gdb792.exp: list children of A.protected.b
new FAIL: gdb.mi/gdb792.exp: list children of A.protected.b.private
new FAIL: gdb.mi/gdb792.exp: list children of A.protected.b.public
new FAIL: gdb.mi/gdb792.exp: list children of A.public
new FAIL: gdb.mi/gdb792.exp: list children of class A
new FAIL: gdb.mi/gdb792.exp: list children of class C
new FAIL: gdb.mi/mi-async.exp: CLI next: send (MI error)
new FAIL: gdb.mi/mi-async.exp: CLI next: stop (timeout)
new FAIL: gdb.mi/mi-async.exp: restart: send (MI error)
new FAIL: gdb.mi/mi-async.exp: restart: stop (timeout)
new FAIL: gdb.mi/mi-async.exp: start: stop (timeout)
new FAIL: gdb.mi/mi-break.exp: breakpoint commands: continue (MI error)
new FAIL: gdb.mi/mi-break.exp: breakpoint commands: set commands <<2>>
new FAIL: gdb.mi/mi-break.exp: create varobj for function call
new FAIL: gdb.mi/mi-break.exp: intermediate stop and continue
new FAIL: gdb.mi/mi-break.exp: test hitting breakpoint with commands (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: breakpoint on pendfunc3 pending again (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: breakpoint on pendfunc3 resolved (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continue to marker 1 (MI error)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continue to marker 1 (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continue to marker 2 (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continue to pendfunc1 breakpoint (timeout)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continuing execution to marker (MI error)
new FAIL: gdb.mi/mi-breakpoint-changed.exp: pending resolved: continuing to exit (MI error)
new FAIL: gdb.mi/mi-catch-load.exp: catch-load: catch load (timeout)
new FAIL: gdb.mi/mi-catch-load.exp: catch-load: continue (failed to resume)
new FAIL: gdb.mi/mi-catch-load.exp: catch-load: solib-event stop
new FAIL: gdb.mi/mi-catch-load.exp: catch-unload: catch unload (timeout)
new FAIL: gdb.mi/mi-catch-load.exp: catch-unload: continue (failed to resume)
new FAIL: gdb.mi/mi-catch-load.exp: catch-unload: solib-event stop
new FAIL: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_callme_2 (MI error)
new FAIL: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_callme_2 (timeout)
new FAIL: gdb.mi/mi-cli.exp: -exec-continue to line $line_main_hello (MI error)
new FAIL: gdb.mi/mi-cli.exp: -exec-step to line $line_callee4_next_step (MI error)
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "down"
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "frame 2"
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "list" at basics.c:$line_main_callme_2
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "list" at basics.c:$line_main_return
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "set $pc=0x0"
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "show args"
new FAIL: gdb.mi/mi-cli.exp: -interpreter-exec console "up"
new FAIL: gdb.mi/mi-cli.exp: -stack-select-frame 0
new FAIL: gdb.mi/mi-cli.exp: 34 next: CLI output (timeout)
new FAIL: gdb.mi/mi-cli.exp: 34 next: run (the program is no longer running)
new FAIL: gdb.mi/mi-cli.exp: 34 next: stop (timeout)
new FAIL: gdb.mi/mi-cli.exp: breakpoint hit produces CLI output
new FAIL: gdb.mi/mi-cli.exp: check *stopped from CLI command (MI error)
new FAIL: gdb.mi/mi-cli.exp: check *stopped from CLI command (timeout)
new FAIL: gdb.mi/mi-cli.exp: check *stopped from CLI command 2 (timeout)
new FAIL: gdb.mi/mi-cli.exp: collect CLI output for -exec-step (timeout)
new FAIL: gdb.mi/mi-cli.exp: collect CLI output for breakpoint hit (timeout)
new FAIL: gdb.mi/mi-cli.exp: continue to callee4 (MI error)
new FAIL: gdb.mi/mi-cli.exp: continue to callee4 (timeout)
new FAIL: gdb.mi/mi-cli.exp: temporary breakpoint output hit in MI (timeout)
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking off"
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking on" no event (requested by MI)
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step"
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking step" no event (requested by MI interp)
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: "set scheduler-locking stepr" no event
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking off"
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking on"
new FAIL: gdb.mi/mi-cmd-param-changed.exp: cmd param: interpreter-exec "set scheduler-locking step"
new FAIL: gdb.mi/mi-condbreak-call-thr-state.exp: mt: no spurious *running notifications (timeout)
new FAIL: gdb.mi/mi-condbreak-call-thr-state.exp: st: no spurious *running notifications (timeout)
new FAIL: gdb.mi/mi-console.exp: finished step over hello (unknown output after running)
new FAIL: gdb.mi/mi-disassemble.exp: data-disassemble from pc to pc+12 assembly with opcodes
new FAIL: gdb.mi/mi-disassemble.exp: data-disassemble mix different args
new FAIL: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed
new FAIL: gdb.mi/mi-disassemble.exp: data-disassemble range assembly mixed with opcodes
new FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 1st dprintf stop (timeout)
new FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf
new FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf 2nd stop (timeout)
new FAIL: gdb.mi/mi-dprintf.exp: gdb: mi 2nd dprintf continue (MI error)
new FAIL: gdb.mi/mi-dprintf.exp: mi insert breakpoint without format string
new FAIL: gdb.mi/mi-eval.exp: eval &A
new FAIL: gdb.mi/mi-eval.exp: eval A
new FAIL: gdb.mi/mi-eval.exp: eval A + 3
new FAIL: gdb.mi/mi-eval.exp: eval A+3
new FAIL: gdb.mi/mi-eval.exp: next at callee4 (unknown output after running)
new FAIL: gdb.mi/mi-exit-code.exp: first run: -list-thread-groups after exit shows exit-code
new FAIL: gdb.mi/mi-exit-code.exp: first run: continuing to inferior exit (MI error)
new FAIL: gdb.mi/mi-exit-code.exp: first run: exit normally (timeout)
new FAIL: gdb.mi/mi-exit-code.exp: second run: -list-thread-groups after exit shows exit-code
new FAIL: gdb.mi/mi-exit-code.exp: second run: -list-thread-groups during run shows no exit-code
new FAIL: gdb.mi/mi-exit-code.exp: second run: continuing to inferior exit (MI error)
new FAIL: gdb.mi/mi-exit-code.exp: second run: exit with code (timeout)
new FAIL: gdb.mi/mi-fill-memory.exp: memory successfully filled (8 bytes)
new FAIL: gdb.mi/mi-fill-memory.exp: memory successfully written
new FAIL: gdb.mi/mi-fill-memory.exp: next at main (unknown output after running)
new FAIL: gdb.mi/mi-fill-memory.exp: pattern correctly read from memory
new FAIL: gdb.mi/mi-inheritance-syntax-error.exp: -data-evaluate-expression 1
new FAIL: gdb.mi/mi-inheritance-syntax-error.exp: -var-info-path-expression var1.A
new FAIL: gdb.mi/mi-inheritance-syntax-error.exp: list children of THIS
new FAIL: gdb.mi/mi-memory-changed.exp: change C thru. -data-write-memory-bytes
new FAIL: gdb.mi/mi-memory-changed.exp: change C thru. varobj
new FAIL: gdb.mi/mi-memory-changed.exp: create objvar for C
new FAIL: gdb.mi/mi-memory-changed.exp: set var C = 4
new FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc1 a second time (timeout)
new FAIL: gdb.mi/mi-pending.exp: Run till MI pending breakpoint on pendfunc2 with x==4 (timeout)
new FAIL: gdb.mi/mi-pending.exp: continuing execution to conditional bp (MI error)
new FAIL: gdb.mi/mi-pending.exp: continuing execution to skip conditional bp (MI error)
new FAIL: gdb.mi/mi-pthreads.exp: check_mi_thread_command_set: -thread-select
new FAIL: gdb.mi/mi-pthreads.exp: finding threads in MI output (in check_mi_thread_command_set)
new FAIL: gdb.mi/mi-read-memory.exp: 3x2, one byte
new FAIL: gdb.mi/mi-read-memory.exp: 3x2, one byte offset by -6
new FAIL: gdb.mi/mi-read-memory.exp: ascii and data
new FAIL: gdb.mi/mi-read-memory.exp: decimal
new FAIL: gdb.mi/mi-read-memory.exp: expression in quotes
new FAIL: gdb.mi/mi-read-memory.exp: next at main (unknown output after running)
new FAIL: gdb.mi/mi-read-memory.exp: octal
new FAIL: gdb.mi/mi-record-changed.exp: record end
new FAIL: gdb.mi/mi-record-changed.exp: target record
new FAIL: gdb.mi/mi-return.exp: return from callee4 now
new FAIL: gdb.mi/mi-simplerun.exp: continue to end (MI error)
new FAIL: gdb.mi/mi-simplerun.exp: continue to end (timeout)
new FAIL: gdb.mi/mi-simplerun.exp: exec-finish (MI error)
new FAIL: gdb.mi/mi-simplerun.exp: exec-finish (timeout)
new FAIL: gdb.mi/mi-simplerun.exp: next at main (MI error)
new FAIL: gdb.mi/mi-simplerun.exp: next at main (timeout)
new FAIL: gdb.mi/mi-simplerun.exp: step at main (MI error)
new FAIL: gdb.mi/mi-simplerun.exp: step at main (timeout)
new FAIL: gdb.mi/mi-simplerun.exp: step to callee4 (MI error)
new FAIL: gdb.mi/mi-simplerun.exp: step to callee4 (timeout)
new FAIL: gdb.mi/mi-solib.exp: check for solib event (timeout)
new FAIL: gdb.mi/mi-stack.exp: next's in callee4 (MI error)
new FAIL: gdb.mi/mi-stack.exp: next's in callee4 (timeout)
new FAIL: gdb.mi/mi-stack.exp: selected frame listing
new FAIL: gdb.mi/mi-stack.exp: stack args listing 0
new FAIL: gdb.mi/mi-stack.exp: stack args listing 0 1 1
new FAIL: gdb.mi/mi-stack.exp: stack args listing 0 1 3
new FAIL: gdb.mi/mi-stack.exp: stack args listing 1
new FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 1
new FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 3
new FAIL: gdb.mi/mi-stack.exp: stack args listing 1 1 300
new FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 1
new FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 3
new FAIL: gdb.mi/mi-stack.exp: stack frame listing 1 300
new FAIL: gdb.mi/mi-stack.exp: stack info-depth
new FAIL: gdb.mi/mi-stack.exp: stack info-depth 3
new FAIL: gdb.mi/mi-stack.exp: stack info-depth 99
new FAIL: gdb.mi/mi-stack.exp: stack locals for same frame (level 1)
new FAIL: gdb.mi/mi-stack.exp: stack locals listing for new frame
new FAIL: gdb.mi/mi-stack.exp: stack locals listing of names
new FAIL: gdb.mi/mi-stack.exp: stack locals listing of names and values
new FAIL: gdb.mi/mi-stack.exp: stack locals listing, simple types: names and values, complex type: names and types
new FAIL: gdb.mi/mi-stack.exp: stack select frame 1
new FAIL: gdb.mi/mi-stepi.exp: next-instruction at main (MI error)
new FAIL: gdb.mi/mi-stepi.exp: next-instruction at main (line check)
new FAIL: gdb.mi/mi-stepi.exp: next-instruction at main (timeout)
new FAIL: gdb.mi/mi-stepi.exp: next-instruction at main 2 (MI error)
new FAIL: gdb.mi/mi-stepi.exp: next-instruction at main 2 (line check)
new FAIL: gdb.mi/mi-stepi.exp: next-instruction at main 2 (timeout)
new FAIL: gdb.mi/mi-stepi.exp: step-instruction at main (line check)
new FAIL: gdb.mi/mi-stepi.exp: step-instruction at main (unknown output after running)
new FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function at exception
new FAIL: gdb.mi/mi-syn-frame.exp: backtrace from inferior function stopped at bp, showing gdb dummy frame
new FAIL: gdb.mi/mi-syn-frame.exp: call inferior function which raises exception
new FAIL: gdb.mi/mi-syn-frame.exp: call inferior's function with a breakpoint set in it
new FAIL: gdb.mi/mi-syn-frame.exp: data evaluate expression
new FAIL: gdb.mi/mi-syn-frame.exp: finished exec continue (timeout)
new FAIL: gdb.mi/mi-syn-frame.exp: finished exec continue (timeout) <<2>>
new FAIL: gdb.mi/mi-syn-frame.exp: list stack frames
new FAIL: gdb.mi/mi-syn-frame.exp: list stack frames <<2>>
new FAIL: gdb.mi/mi-syn-frame.exp: list stack frames <<3>>
new FAIL: gdb.mi/mi-syn-frame.exp: testing exec continue (MI error)
new FAIL: gdb.mi/mi-syn-frame.exp: testing exec continue (MI error) <<2>>
new FAIL: gdb.mi/mi-until.exp: until after current function (MI error)
new FAIL: gdb.mi/mi-until.exp: until after current function (timeout)
new FAIL: gdb.mi/mi-until.exp: until after while loop (timeout)
new FAIL: gdb.mi/mi-until.exp: until line number (MI error)
new FAIL: gdb.mi/mi-until.exp: until line number (timeout)
new FAIL: gdb.mi/mi-until.exp: until line number:file (MI error)
new FAIL: gdb.mi/mi-until.exp: until line number:file (timeout)
new FAIL: gdb.mi/mi-var-block.exp: create local variable foo
new FAIL: gdb.mi/mi-var-block.exp: create local variable foo2
new FAIL: gdb.mi/mi-var-block.exp: create local variable inner_foo
new FAIL: gdb.mi/mi-var-block.exp: delete var cb
new FAIL: gdb.mi/mi-var-block.exp: delete var foo 2
new FAIL: gdb.mi/mi-var-block.exp: delete var foo2
new FAIL: gdb.mi/mi-var-block.exp: delete var inner_foo
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 1 (MI error)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 1 (timeout)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 2 (MI error)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 2 (timeout)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 3 (MI error)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 3 (timeout)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 4 (MI error)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 4 (timeout)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 5 (MI error)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 5 (timeout)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 6 (MI error)
new FAIL: gdb.mi/mi-var-block.exp: step at do_block_test 6 (timeout)
new FAIL: gdb.mi/mi-var-block.exp: try to create local variable foo
new FAIL: gdb.mi/mi-var-block.exp: update all vars: cb foo changed
new FAIL: gdb.mi/mi-var-block.exp: update cb
new FAIL: gdb.mi/mi-var-block.exp: update foo: did not change
new FAIL: gdb.mi/mi-var-child-f.exp: get children of array
new FAIL: gdb.mi/mi-var-child-f.exp: get grandchildren of array (children of first element of second index)
new FAIL: gdb.mi/mi-var-child.exp: child_deletion: go to line 339
new FAIL: gdb.mi/mi-var-child.exp: child_deletion: step over 339 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: create local variable  psnp->ptrs
new FAIL: gdb.mi/mi-var-child.exp: create local variable struct_declarations
new FAIL: gdb.mi/mi-var-child.exp: create local variable weird
new FAIL: gdb.mi/mi-var-child.exp: create local variable weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: delete var struct_declarations
new FAIL: gdb.mi/mi-var-child.exp: delete var weird
new FAIL: gdb.mi/mi-var-child.exp: delete var weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr <<2>>
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr <<2>>
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr <<2>>
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next
new FAIL: gdb.mi/mi-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.character
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.func_ptr_struct
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.integer
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.1
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.2
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.3
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.4
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.5
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.6
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.7
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.8
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_array.9
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.long_int
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.g
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.h
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.i
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.f
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.a
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.b
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.c
new FAIL: gdb.mi/mi-var-child.exp: get children of struct_declarations.u1.d
new FAIL: gdb.mi/mi-var-child.exp: get children of weird
new FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get children of weird.long_array
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr <<2>>
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.char_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.character
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.func_ptr_struct
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.integer
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.1
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.2
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.3
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.4
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.5
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.6
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.7
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.8
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_array.9
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.long_int
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.g
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.h
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.i
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.f
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.a
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.b
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.c
new FAIL: gdb.mi/mi-var-child.exp: get number of children of struct_declarations.u1.d
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi-var-child.exp: get number of children of weird.long_array
new FAIL: gdb.mi/mi-var-child.exp: is struct_declarations editable
new FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.long_array editable
new FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.long_array.0 editable
new FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.a editable
new FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.b editable
new FAIL: gdb.mi/mi-var-child.exp: is struct_declarations.u1.c editable
new FAIL: gdb.mi/mi-var-child.exp: is weird editable
new FAIL: gdb.mi/mi-var-child.exp: is weird->int_ptr_ptr editable
new FAIL: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
new FAIL: gdb.mi/mi-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
new FAIL: gdb.mi/mi-var-child.exp: is weird.s2 editable
new FAIL: gdb.mi/mi-var-child.exp: is weird.u1 editable
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-child.exp: listing of names and values of children
new FAIL: gdb.mi/mi-var-child.exp: run to 229 (exec-continue) (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 1 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 1 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 4 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 4 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 5 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 5 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 6 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 6 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 7 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 7 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 8 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_123 + 8 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_a0_0 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_a0_0 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 1 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 1 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 2 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 2 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 3 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 3 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 4 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_nothing + 4 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 1 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 1 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 2 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 2 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 3 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 3 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 4 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 4 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 5 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 5 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 6 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 6 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 7 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step $line_dct_snp0 + 7 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: step to line $line_dct_123 (MI error)
new FAIL: gdb.mi/mi-var-child.exp: step to line $line_dct_123 (timeout)
new FAIL: gdb.mi/mi-var-child.exp: update all vars int_ptr_ptr and children changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->char_ptr (and 0.char_ptr) changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->long_ptr (and 0.long_ptr) changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->char_ptr (and 1.char_ptr) changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->char_ptr (and 2.char_ptr) changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars psnp->next->next->long_ptr (and 2.long_ptr) changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.char_ptr
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_ptr changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.func_ptr_struct changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.integer
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.0 changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.1 changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.10 changed, don't print values.
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.11 changed, print values.
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.2 changed
new FAIL: gdb.mi/mi-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
new FAIL: gdb.mi/mi-var-child.exp: wait for stop (step to real start of do_children_test)
new FAIL: gdb.mi/mi-var-cmd.exp: assign array to pointer
new FAIL: gdb.mi/mi-var-cmd.exp: assign array to pointer (update)
new FAIL: gdb.mi/mi-var-cmd.exp: assign same array to pointer
new FAIL: gdb.mi/mi-var-cmd.exp: assign same value to func
new FAIL: gdb.mi/mi-var-cmd.exp: assign to func
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lcharacter
new FAIL: gdb.mi/mi-var-cmd.exp: assign to ldouble
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lfloat
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lfloat <<2>>
new FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger
new FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger <<2>>
new FAIL: gdb.mi/mi-var-cmd.exp: assign to linteger again, same value
new FAIL: gdb.mi/mi-var-cmd.exp: assign to llong
new FAIL: gdb.mi/mi-var-cmd.exp: assign to llong <<2>>
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lpfloat
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lpinteger
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lpinteger <<2>>
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lplong
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lplong <<2>>
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple->integer
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple.character
new FAIL: gdb.mi/mi-var-cmd.exp: assign to lsimple.integer
new FAIL: gdb.mi/mi-var-cmd.exp: bitfield: go to line 526
new FAIL: gdb.mi/mi-var-cmd.exp: bitfield: step over 526 (MI error)
PASS -> FAIL: gdb.mi/mi-var-cmd.exp: breakpoint at main
new FAIL: gdb.mi/mi-var-cmd.exp: check F inside callee
new FAIL: gdb.mi/mi-var-cmd.exp: continue to where i is initialized (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: continue to where i is initialized (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: create i
new FAIL: gdb.mi/mi-var-cmd.exp: create l
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable func
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lcharacter
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable ldouble
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lfloat
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable linteger
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable llong
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpcharacter
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpdouble
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpfloat
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpinteger
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lplong
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lpsimple
new FAIL: gdb.mi/mi-var-cmd.exp: create local variable lsimple
new FAIL: gdb.mi/mi-var-cmd.exp: create lsimple->integer
new FAIL: gdb.mi/mi-var-cmd.exp: create lsimple.character
new FAIL: gdb.mi/mi-var-cmd.exp: create lsimple.integer
new FAIL: gdb.mi/mi-var-cmd.exp: create selected_a
new FAIL: gdb.mi/mi-var-cmd.exp: delete selected_a
new FAIL: gdb.mi/mi-var-cmd.exp: delete var  lsimple->integer
new FAIL: gdb.mi/mi-var-cmd.exp: delete var func
new FAIL: gdb.mi/mi-var-cmd.exp: delete var i
new FAIL: gdb.mi/mi-var-cmd.exp: delete var l
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lcharacter
new FAIL: gdb.mi/mi-var-cmd.exp: delete var ldouble
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lfloat
new FAIL: gdb.mi/mi-var-cmd.exp: delete var linteger
new FAIL: gdb.mi/mi-var-cmd.exp: delete var llong
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lpcharacter
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lpdouble
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lpfloat
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lpinteger
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lplong
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lpsimple
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple.character
new FAIL: gdb.mi/mi-var-cmd.exp: delete var lsimple.integer
new FAIL: gdb.mi/mi-var-cmd.exp: eval lcharacter
new FAIL: gdb.mi/mi-var-cmd.exp: eval lfloat
new FAIL: gdb.mi/mi-var-cmd.exp: eval linteger
new FAIL: gdb.mi/mi-var-cmd.exp: eval llong
new FAIL: gdb.mi/mi-var-cmd.exp: eval lpinteger
new FAIL: gdb.mi/mi-var-cmd.exp: eval lplong
new FAIL: gdb.mi/mi-var-cmd.exp: floating: go to line 469
new FAIL: gdb.mi/mi-var-cmd.exp: floating: step over 469 (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: frozen: go to line 367
new FAIL: gdb.mi/mi-var-cmd.exp: frozen: step over 367 (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: check initial value
new FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now
new FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: in scope now, not changed
new FAIL: gdb.mi/mi-var-cmd.exp: in-and-out-of-scope: out of scope now, not changed
new FAIL: gdb.mi/mi-var-cmd.exp: kill program before endvar (the program is no longer running)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_locals_tests (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_locals_tests (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto do_special_tests (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto incr_a (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto incr_a (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto subroutine1 (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: mi runto subroutine1 (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: next out of subroutine1 (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: next out of subroutine1 (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: return from incr_a to do_special_tests (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: run to 148 (exec-continue) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step a line in incr_a (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step a line in incr_a (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_test (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_test (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (2) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (2) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (3) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (3) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (4) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (4) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (5) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (5) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (6) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (6) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (7) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at do_locals_tests (7) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1 (2) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1 (2) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1 (3) (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1 (3) (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1 (MI error)
new FAIL: gdb.mi/mi-var-cmd.exp: step at subroutine1 (timeout)
new FAIL: gdb.mi/mi-var-cmd.exp: update F inside callee
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: all now out of scope
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: func and lpsimple changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: i changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lcharacter changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: linteger changed after assign
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: llong changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpcharacter changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lpinteger changed after assign
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: lsimple and others changed
new FAIL: gdb.mi/mi-var-cmd.exp: update all vars: many changed
new FAIL: gdb.mi/mi-var-cmd.exp: update selected_a in do_special_tests
new FAIL: gdb.mi/mi-var-cmd.exp: update selected_a in incr_a
new FAIL: gdb.mi/mi-var-cmd.exp: wait for stop (step to real start of do_locals_test)
new FAIL: gdb.mi/mi-var-cp.exp: VT: create root varobj for a
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.0_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: VT: list children of a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: base_in_reference: go to line 45
new FAIL: gdb.mi/mi-var-cp.exp: base_in_reference: step over 45 (MI error)
new FAIL: gdb.mi/mi-var-cp.exp: continue to anonymous_structs breakpoint (MI error)
new FAIL: gdb.mi/mi-var-cp.exp: continue to anonymous_structs breakpoint (timeout)
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.0_anonymous.public.b
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.1_anonymous.public.c
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.e
new FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.d
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.0_anonymous.public.b
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.1_anonymous.public.c
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.g
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.1_anonymous.public.h
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.i
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.2_anonymous.public.j
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.1_anonymous.public.e
new FAIL: gdb.mi/mi-var-cp.exp: path expression for a1.public.2_anonymous.public.d
new FAIL: gdb.mi/mi-var-cp.exp: path_expression: go to line 144
new FAIL: gdb.mi/mi-var-cp.exp: path_expression: step over 144 (MI error)
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_pointer: go to line 81
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_pointer: step over 81 (MI error)
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_struct: go to line 104
new FAIL: gdb.mi/mi-var-cp.exp: reference_to_struct: step over 104 (MI error)
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: go to line 19
new FAIL: gdb.mi/mi-var-cp.exp: reference_update: step over 19 (MI error)
new FAIL: gdb.mi/mi-var-display.exp: assing to variable bar
new FAIL: gdb.mi/mi-var-display.exp: assing to variable foo
new FAIL: gdb.mi/mi-var-display.exp: continue to do_special_tests (MI error)
new FAIL: gdb.mi/mi-var-display.exp: continue to do_special_tests (timeout)
new FAIL: gdb.mi/mi-var-display.exp: create duplicate local variable anone
new FAIL: gdb.mi/mi-var-display.exp: create local variable a1
new FAIL: gdb.mi/mi-var-display.exp: create local variable anone
new FAIL: gdb.mi/mi-var-display.exp: create local variable anons
new FAIL: gdb.mi/mi-var-display.exp: create local variable anonu
new FAIL: gdb.mi/mi-var-display.exp: create local variable e
new FAIL: gdb.mi/mi-var-display.exp: create local variable foo
new FAIL: gdb.mi/mi-var-display.exp: create local variable s
new FAIL: gdb.mi/mi-var-display.exp: create local variable u
new FAIL: gdb.mi/mi-var-display.exp: create local variable weird
new FAIL: gdb.mi/mi-var-display.exp: delete var foo
new FAIL: gdb.mi/mi-var-display.exp: delete var weird
new FAIL: gdb.mi/mi-var-display.exp: eval variable -f decimal foo
new FAIL: gdb.mi/mi-var-display.exp: eval variable -f nat foo
new FAIL: gdb.mi/mi-var-display.exp: eval variable -f octal foo
new FAIL: gdb.mi/mi-var-display.exp: eval variable anone
new FAIL: gdb.mi/mi-var-display.exp: eval variable anons
new FAIL: gdb.mi/mi-var-display.exp: eval variable anonu
new FAIL: gdb.mi/mi-var-display.exp: eval variable bar
new FAIL: gdb.mi/mi-var-display.exp: eval variable bar with new format
new FAIL: gdb.mi/mi-var-display.exp: eval variable bar with new value
new FAIL: gdb.mi/mi-var-display.exp: eval variable e
new FAIL: gdb.mi/mi-var-display.exp: eval variable foo in binary
new FAIL: gdb.mi/mi-var-display.exp: eval variable foo in decimal
new FAIL: gdb.mi/mi-var-display.exp: eval variable foo in hex
new FAIL: gdb.mi/mi-var-display.exp: eval variable foo in natural
new FAIL: gdb.mi/mi-var-display.exp: eval variable foo in octal
new FAIL: gdb.mi/mi-var-display.exp: eval variable s
new FAIL: gdb.mi/mi-var-display.exp: eval variable u
new FAIL: gdb.mi/mi-var-display.exp: get children local variable weird
new FAIL: gdb.mi/mi-var-display.exp: get children of anone
new FAIL: gdb.mi/mi-var-display.exp: get children of anons
new FAIL: gdb.mi/mi-var-display.exp: get children of anonu
new FAIL: gdb.mi/mi-var-display.exp: get children of e
new FAIL: gdb.mi/mi-var-display.exp: get children of s
new FAIL: gdb.mi/mi-var-display.exp: get children of u
new FAIL: gdb.mi/mi-var-display.exp: get number of children of anone
new FAIL: gdb.mi/mi-var-display.exp: get number of children of anons
new FAIL: gdb.mi/mi-var-display.exp: get number of children of anonu
new FAIL: gdb.mi/mi-var-display.exp: get number of children of e
new FAIL: gdb.mi/mi-var-display.exp: get number of children of s
new FAIL: gdb.mi/mi-var-display.exp: get number of children of u
new FAIL: gdb.mi/mi-var-display.exp: info type variable anone
new FAIL: gdb.mi/mi-var-display.exp: info type variable anons
new FAIL: gdb.mi/mi-var-display.exp: info type variable anonu
new FAIL: gdb.mi/mi-var-display.exp: info type variable bar
new FAIL: gdb.mi/mi-var-display.exp: info type variable e
new FAIL: gdb.mi/mi-var-display.exp: info type variable foo
new FAIL: gdb.mi/mi-var-display.exp: info type variable s
new FAIL: gdb.mi/mi-var-display.exp: info type variable u
new FAIL: gdb.mi/mi-var-display.exp: is anone editable
new FAIL: gdb.mi/mi-var-display.exp: is anons editable
new FAIL: gdb.mi/mi-var-display.exp: is anonu editable
new FAIL: gdb.mi/mi-var-display.exp: is e editable
new FAIL: gdb.mi/mi-var-display.exp: is s editable
new FAIL: gdb.mi/mi-var-display.exp: is u editable
new FAIL: gdb.mi/mi-var-display.exp: mi runto incr_a (MI error)
new FAIL: gdb.mi/mi-var-display.exp: mi runto incr_a (timeout)
new FAIL: gdb.mi/mi-var-display.exp: print FP register
new FAIL: gdb.mi/mi-var-display.exp: set format variable bar in decimal
new FAIL: gdb.mi/mi-var-display.exp: set format variable bar in hex
new FAIL: gdb.mi/mi-var-display.exp: set format variable foo decimal
new FAIL: gdb.mi/mi-var-display.exp: set format variable foo in octal
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.char_ptr
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.character
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in hex (1)
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr in hex (2)
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in hex
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_struct
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.int_ptr_ptr
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.integer
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.long_array
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.long_int
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.s2
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.u1
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in binary
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in decimal
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in hex
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in natural
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo after eval in octal
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo in natural
new FAIL: gdb.mi/mi-var-display.exp: show format variable foo in octal
new FAIL: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr
new FAIL: gdb.mi/mi-var-display.exp: show format variable weird.func_ptr_ptr
new FAIL: gdb.mi/mi-var-invalidate.exp: create floating variable
new FAIL: gdb.mi/mi-var-invalidate.exp: linteger not anymore in scope due to binary changes
new FAIL: gdb.mi/mi-var-invalidate.exp: linteger not valid anymore due to binary changes
new FAIL: gdb.mi/mi-var-invalidate.exp: no type for invalid variable linteger (1)
new FAIL: gdb.mi/mi-var-invalidate.exp: no type for invalid variable linteger (2)
new FAIL: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: go to line 306
new FAIL: gdb.mi/mi-var-rtti.exp: skip_type_update_when_not_use_rtti: step over 306 (MI error)
new FAIL: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: go to line 250
new FAIL: gdb.mi/mi-var-rtti.exp: type_update_when_use_rtti: step over 250 (MI error)
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: go to line 36
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr: step over 36 (MI error)
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: go to line 93
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ptr_child: step over 93 (MI error)
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: go to line 63
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref: step over 63 (MI error)
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: go to line 148
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_for_ref_child: step over 148 (MI error)
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: go to line 201
new FAIL: gdb.mi/mi-var-rtti.exp: use_rtti_with_multiple_inheritence: step over 201 (MI error)
new FAIL: gdb.mi/mi-vla-c99.exp: create local variable vla
new FAIL: gdb.mi/mi-vla-c99.exp: eval variable vla
new FAIL: gdb.mi/mi-vla-c99.exp: evaluate complete vla
new FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[0]
new FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[2]
new FAIL: gdb.mi/mi-vla-c99.exp: evaluate vla[4]
new FAIL: gdb.mi/mi-vla-c99.exp: get children of vla
new FAIL: gdb.mi/mi-vla-c99.exp: info type variable vla
new FAIL: gdb.mi/mi-vla-c99.exp: show format variable vla
new FAIL: gdb.mi/mi-watch.exp: hw: list of watchpoints
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/mi-watch.exp: sw: list of watchpoints
new FAIL: gdb.mi/mi-watch.exp: sw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: sw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: sw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/mi2-var-child.exp: Run till MI stops in do_nested_struct_union_tests (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for ptr
new FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for ss_ptr
new FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for v
new FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for var
new FAIL: gdb.mi/mi2-var-child.exp: VT: create root varobj for var2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ptr1.*ptr.1_anonymous.c
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.a2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.3_anonymous.b2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.a1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.b1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.a3
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of ss_ptr1.u2.b3
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1.1_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of v1.2_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.a2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.3_anonymous.b2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.a1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.b1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.a3
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var1.u2.b3
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.a
new FAIL: gdb.mi/mi2-var-child.exp: VT: list children of var21.ab.b
new FAIL: gdb.mi/mi2-var-child.exp: continue to do_anonymous_type_tests breakpoint (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: continue to do_anonymous_type_tests breakpoint (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: continuing execution to enter do_nested_struct_union_tests (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: create local variable  psnp->ptrs
new FAIL: gdb.mi/mi2-var-child.exp: create local variable struct_declarations
new FAIL: gdb.mi/mi2-var-child.exp: create local variable weird
new FAIL: gdb.mi/mi2-var-child.exp: create local variable weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: delete var struct_declarations
new FAIL: gdb.mi/mi2-var-child.exp: delete var weird
new FAIL: gdb.mi/mi2-var-child.exp: delete var weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.d
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.e
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.2_anonymous.f
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.1_anonymous.c.*c
new FAIL: gdb.mi/mi2-var-child.exp: expression for ptr1.*ptr.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.a2.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.3_anonymous.b2.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.a1.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.b1.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.a.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u1.b.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.a3.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3
new FAIL: gdb.mi/mi2-var-child.exp: expression for ss_ptr1.u2.b3.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for v1
new FAIL: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for v1.1_anonymous.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for v1.2_anonymous.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for v1.x
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.a2.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.3_anonymous.b2.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.a1
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.a1.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.b1
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.b1.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.a.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u1.b.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.a3.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3
new FAIL: gdb.mi/mi2-var-child.exp: expression for var1.u2.b3.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for var21
new FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab
new FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.a.a
new FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.b
new FAIL: gdb.mi/mi2-var-child.exp: expression for var21.ab.b.b
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr <<2>>
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr <<2>>
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr <<2>>
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next
new FAIL: gdb.mi/mi2-var-child.exp: get children of psnp->ptrs.0.next.next.ptrs
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.character
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.func_ptr_struct
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.integer
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.1
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.2
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.3
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.4
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.5
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.6
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.7
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.8
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_array.9
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.long_int
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.g
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.h
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.i
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.f
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.d
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.e
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.foo
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s1.func
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.array_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.s2.u2.u1s2.func
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.c
new FAIL: gdb.mi/mi2-var-child.exp: get children of struct_declarations.u1.d
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get children of weird.long_array
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->char_ptr.*psnp->char_ptr.**psnp->char_ptr.***psnp->char_ptr.****psnp->char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->long_ptr.*psnp->long_ptr.**psnp->long_ptr.***psnp->long_ptr.****psnp->long_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of psnp->ptrs.0.next.char_ptr.*char_ptr.**char_ptr.***char_ptr <<2>>
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.character
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.func_ptr_struct
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.integer
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.1
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.2
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.3
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.4
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.5
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.6
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.7
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.8
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_array.9
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.long_int
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.g
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.h
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.i
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.f
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.d
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.e
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.foo
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s1.func
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.array_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.s2.u2.u1s2.func
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.c
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of struct_declarations.u1.d
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird->int_ptr_ptr.*weird->int_ptr_ptr.**weird->int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.int_ptr_ptr.*int_ptr_ptr
new FAIL: gdb.mi/mi2-var-child.exp: get number of children of weird.long_array
new FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations editable
new FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array editable
new FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.long_array.0 editable
new FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.a editable
new FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.b editable
new FAIL: gdb.mi/mi2-var-child.exp: is struct_declarations.u1.c editable
new FAIL: gdb.mi/mi2-var-child.exp: is weird editable
new FAIL: gdb.mi/mi2-var-child.exp: is weird->int_ptr_ptr editable
new FAIL: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr editable
new FAIL: gdb.mi/mi2-var-child.exp: is weird.int_ptr_ptr.*int_ptr_ptr.**int_ptr_ptr editable
new FAIL: gdb.mi/mi2-var-child.exp: is weird.s2 editable
new FAIL: gdb.mi/mi2-var-child.exp: is weird.u1 editable
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.g
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.h.*h.**h
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.0
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.3
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.4
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.5
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.6
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.7
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.8
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.array_of_10.9
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.char_ptr.*char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.character
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.integer
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.signed_character
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.3_anonymous.simple.*simple.**simple.unsigned_integer
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.d
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.e
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.2_anonymous.f
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.1_anonymous.c.*c
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ptr1.*ptr.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.a2.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.3_anonymous.b2.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.a1.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.b1.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.a.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u1.b.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.a3.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3
new FAIL: gdb.mi/mi2-var-child.exp: path expression for ss_ptr1.u2.b3.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for v1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.1_anonymous.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.2_anonymous.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for v1.x
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.a2.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.3_anonymous.b2.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.a1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.a1.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.b1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.b1.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.a.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u1.b.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.a3.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var1.u2.b3.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var21
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.a.a
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b
new FAIL: gdb.mi/mi2-var-child.exp: path expression for var21.ab.b.b
new FAIL: gdb.mi/mi2-var-child.exp: run to 251 (exec-continue) (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 1 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 1 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 4 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 4 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 5 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 5 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 6 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 6 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 7 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 7 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 8 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_123 + 8 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing + 1 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_nothing + 1 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 1 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 1 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 2 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 2 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 3 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 3 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 4 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 4 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 5 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 5 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 6 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 6 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 7 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step $line_dct_snp0 + 7 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: step to line $line_dct_123 (MI error)
new FAIL: gdb.mi/mi2-var-child.exp: step to line $line_dct_123 (timeout)
new FAIL: gdb.mi/mi2-var-child.exp: update all vars int_ptr_ptr and children changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->char_ptr (and 0.char_ptr) changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->long_ptr (and 0.long_ptr) changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->char_ptr (and 1.char_ptr) changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->char_ptr (and 2.char_ptr) changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars psnp->next->next->long_ptr (and 2.long_ptr) changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.char_ptr
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.func_ptr changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.integer
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.0 changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.1 changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.2 changed
new FAIL: gdb.mi/mi2-var-child.exp: update all vars struct_declarations.long_array.3-9 changed
new FAIL: gdb.mi/mi2-var-child.exp: wait for stop (step to real start of do_children_test)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": set x
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": set x
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.multi/watchpoint-multi.exp: catch b on inferior 1 (the program is no longer running)
new FAIL: gdb.multi/watchpoint-multi.exp: catch c on inferior 2 (the program is no longer running)
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1 (the program is no longer running)
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 2 (the program is no longer running)
new FAIL: gdb.multi/watchpoint-multi.exp: start to main inferior 1
new FAIL: gdb.multi/watchpoint-multi.exp: start to main inferior 2
new FAIL: gdb.python/py-events.exp: New objfile notification
new FAIL: gdb.python/py-events.exp: continue (the program is no longer running)
new FAIL: gdb.python/py-events.exp: get address of do_nothing
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-events.exp: step 3 (the program is no longer running)
new FAIL: gdb.python/py-framefilter-mi.exp: filtered stack list 0 3
new FAIL: gdb.python/py-framefilter-mi.exp: filtered stack list 22 24
new FAIL: gdb.python/py-framefilter-mi.exp: filtered stack listing
new FAIL: gdb.python/py-framefilter-mi.exp: run to 46 (exec-continue) (MI error)
new FAIL: gdb.python/py-framefilter-mi.exp: run to 46 (set breakpoint)
new FAIL: gdb.python/py-framefilter-mi.exp: run to 51 (exec-continue) (MI error)
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 0
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 1
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 2
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments --no-frame-filters 2 22 27
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0 0 3
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 0 22 27
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1 0 3
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 1 22 27
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2 0 3
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-arguments 2 22 27
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --all-values
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --all-values frame filters enabled
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --all-values
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --no-values
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters --simple-values
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 0
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 1
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals --no-frame-filters 2
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals 0
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals 1
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-locals 2
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-variables --no-frame-filters 0
new FAIL: gdb.python/py-framefilter-mi.exp: stack-list-variables 0
new FAIL: gdb.python/py-framefilter-mi.exp: wait for stop (step to breakpoint)
new FAIL: gdb.python/py-framefilter-mi.exp: wait for stop (step to breakpoint) <<2>>
new FAIL: gdb.python/py-mi.exp: Install visualizer on a cplus_fake_child
new FAIL: gdb.python/py-mi.exp: choose array visualizer for c
new FAIL: gdb.python/py-mi.exp: choose default visualizer
new FAIL: gdb.python/py-mi.exp: choose default visualizer <<2>>
new FAIL: gdb.python/py-mi.exp: choose visualizer using expression
new FAIL: gdb.python/py-mi.exp: clear visualizer
new FAIL: gdb.python/py-mi.exp: clear visualizer <<2>>
new FAIL: gdb.python/py-mi.exp: create container varobj
new FAIL: gdb.python/py-mi.exp: create container varobj, no pretty-printing
new FAIL: gdb.python/py-mi.exp: create estring varobj
new FAIL: gdb.python/py-mi.exp: create fake varobj
new FAIL: gdb.python/py-mi.exp: create me varobj
new FAIL: gdb.python/py-mi.exp: create nscont varobj, no pretty-printing
new FAIL: gdb.python/py-mi.exp: create nstype varobj
new FAIL: gdb.python/py-mi.exp: create nstype2 varobj
new FAIL: gdb.python/py-mi.exp: create outer varobj
new FAIL: gdb.python/py-mi.exp: create second container varobj
new FAIL: gdb.python/py-mi.exp: create varobj for c
new FAIL: gdb.python/py-mi.exp: delete varobj
new FAIL: gdb.python/py-mi.exp: delete varobj <<2>>
new FAIL: gdb.python/py-mi.exp: evaluate me varobj
new FAIL: gdb.python/py-mi.exp: examine container children=0
new FAIL: gdb.python/py-mi.exp: examine container children=0, no pretty-printing
new FAIL: gdb.python/py-mi.exp: examine nscont children=0, no pretty-printing
new FAIL: gdb.python/py-mi.exp: list children after listing selected range
new FAIL: gdb.python/py-mi.exp: list children after setting exception flag
new FAIL: gdb.python/py-mi.exp: list children after setting update range
new FAIL: gdb.python/py-mi.exp: list children after setting update range <<2>>
new FAIL: gdb.python/py-mi.exp: list children fake.private
new FAIL: gdb.python/py-mi.exp: list children of c
new FAIL: gdb.python/py-mi.exp: list children of fake
new FAIL: gdb.python/py-mi.exp: list children of outer
new FAIL: gdb.python/py-mi.exp: list children of outer.s
new FAIL: gdb.python/py-mi.exp: list selected children after setting range
new FAIL: gdb.python/py-mi.exp: list varobj children after resetting child range
new FAIL: gdb.python/py-mi.exp: list varobj children after selecting child range
new FAIL: gdb.python/py-mi.exp: next over change of array element (MI error)
new FAIL: gdb.python/py-mi.exp: next over change of array element (timeout)
new FAIL: gdb.python/py-mi.exp: next over outer update (MI error)
new FAIL: gdb.python/py-mi.exp: next over outer update (timeout)
new FAIL: gdb.python/py-mi.exp: next over update 1 (MI error)
new FAIL: gdb.python/py-mi.exp: next over update 1 (timeout)
new FAIL: gdb.python/py-mi.exp: next over update 2 (MI error)
new FAIL: gdb.python/py-mi.exp: next over update 2 (timeout)
new FAIL: gdb.python/py-mi.exp: next over update 3 (MI error)
new FAIL: gdb.python/py-mi.exp: next over update 3 (timeout)
new FAIL: gdb.python/py-mi.exp: next over update 4 (MI error)
new FAIL: gdb.python/py-mi.exp: next over update 4 (timeout)
new FAIL: gdb.python/py-mi.exp: next over update 5 (MI error)
new FAIL: gdb.python/py-mi.exp: next over update 5 (timeout)
new FAIL: gdb.python/py-mi.exp: next over update 6 (MI error)
new FAIL: gdb.python/py-mi.exp: next over update 6 (timeout)
new FAIL: gdb.python/py-mi.exp: printer whose children are returned as a list
new FAIL: gdb.python/py-mi.exp: run to 131 (exec-continue) (MI error)
new FAIL: gdb.python/py-mi.exp: run to 222 (exec-continue) (MI error)
new FAIL: gdb.python/py-mi.exp: run to 254 (exec-continue) (MI error)
new FAIL: gdb.python/py-mi.exp: run to 328 (exec-continue) (MI error)
new FAIL: gdb.python/py-mi.exp: run to 351 (exec-continue) (MI error)
new FAIL: gdb.python/py-mi.exp: run to 351 (exec-continue) (MI error) <<2>>
new FAIL: gdb.python/py-mi.exp: set update range
new FAIL: gdb.python/py-mi.exp: set update range with non-zero start
new FAIL: gdb.python/py-mi.exp: update after next with restricted range
new FAIL: gdb.python/py-mi.exp: update after type change
new FAIL: gdb.python/py-mi.exp: update after updating element of outer
new FAIL: gdb.python/py-mi.exp: update string varobj after assignment
new FAIL: gdb.python/py-mi.exp: update varobj 2, no children requested
new FAIL: gdb.python/py-mi.exp: update varobj after element change
new FAIL: gdb.python/py-mi.exp: update varobj with change outside selected range
new FAIL: gdb.python/py-mi.exp: update varobj, no children requested
new FAIL: gdb.python/py-mi.exp: varobj update 1
new FAIL: gdb.python/py-mi.exp: varobj update 2
new FAIL: gdb.python/py-mi.exp: varobj update after choosing default
new FAIL: gdb.python/py-mi.exp: varobj update after choosing via expression
new FAIL: gdb.python/py-mi.exp: varobj update after clearing
new FAIL: gdb.python/py-mi.exp: varobj update after clearing <<2>>
new FAIL: gdb.python/py-mi.exp: wait for stop (step to breakpoint for bug 14741)
new FAIL: gdb.python/py-mi.exp: wait for stop (step to breakpoint)
new FAIL: gdb.python/py-mi.exp: wait for stop (step to breakpoint) <<2>>
new FAIL: gdb.python/py-mi.exp: wait for stop (step to outer breakpoint)
new FAIL: gdb.python/py-mi.exp: wait for stop (step to outer breakpoint) <<2>>
new FAIL: gdb.python/py-mi.exp: wait for stop (step to second breakpoint)
new FAIL: gdb.python/py-symbol.exp: Can't run to main
new FAIL: gdb.python/py-type.exp: lang_c: continue to breakpoint: break to inspect struct and array. (the program is no longer running)
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum field lookup by name (v1)
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum field lookup by name (v3)
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum field[0] name
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum field[1]name
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check enum fields items list
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check num fields iteration over values
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check the number of enum fields
new FAIL: gdb.python/py-type.exp: lang_c: test_enum: Check the number of type fields
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check array field type
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check conversion to bool
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check field name exists test
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check field name nonexists test
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields items list
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields iteration over values
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check fields lookup by name
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check length of ss_fields
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check number of fields (st)
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check number of fields (st.type)
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[0].name
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check ss_fields[1].name
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check structure field a name
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check structure field b name
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check that dir includes name
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: Check the number of fields
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to array with one argument
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to array with two arguments
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with one argument
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: cast to vector with two arguments
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: get fields from ss.type
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: get fields from st.type
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: get value (ar) from history
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: get value (st) from history
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: init ss
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (ar[0].type == ar[0].type)
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (len (st.type['a'].type))
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (not not st.type['a'].type)
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (st.type['a'].type.has_key ('x'))
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (st.type['a'].type.keys ())
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (st.type['a'].type['x'])
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (vec1 == vec2)
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: python print (vec1 == vec3)
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec1
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec2
new FAIL: gdb.python/py-type.exp: lang_c: test_fields: set vec3
new FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: Check base class (fields[0])
new FAIL: gdb.python/py-type.exp: lang_cpp: test_base_class: Check the number of fields
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum field lookup by name (v1)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum field lookup by name (v3)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum field[0] name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum field[1]name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check enum fields items list
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check num fields iteration over values
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check the number of enum fields
new FAIL: gdb.python/py-type.exp: lang_cpp: test_enum: Check the number of type fields
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check array field type
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check class field c name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check class field d name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check conversion to bool
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check field name exists test
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check field name nonexists test
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields items list
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields iteration over values
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check fields lookup by name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check length of ss_fields
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check number of fields (c)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check number of fields (st)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check number of fields (st.type)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[0].name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check ss_fields[1].name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check structure field a name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check structure field b name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check that dir includes name
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: Check the number of fields
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with one argument
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to array with two arguments
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with one argument
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: cast to vector with two arguments
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from c.type
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from ss.type
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get fields from st.type
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get value (ar) from history
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get value (c) from history
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: get value (st) from history
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: init ss
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (ar[0].type == ar[0].type)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (c.type == gdb.parse_and_eval('d').type)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (c.type == gdb.parse_and_eval('d').type.fields()[0].type)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (len (st.type['a'].type))
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (not not st.type['a'].type)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (st.type['a'].type.has_key ('x'))
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (st.type['a'].type.keys ())
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (st.type['a'].type['x'])
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (vec1 == vec2)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: python print (vec1 == vec3)
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec1
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec2
new FAIL: gdb.python/py-type.exp: lang_cpp: test_fields: set vec3
new FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: Check range high bound
new FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged type: Check range low bound
new FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: Check correct tuple length
new FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: Check range high bound
new FAIL: gdb.python/py-type.exp: lang_cpp: test_range: on ranged value: Check range low bound
new FAIL: gdb.python/py-value.exp: Can't run to main
new FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar (the program is no longer running) <<2>>
new FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: bar backward (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo (the program is no longer running) <<2>>
new FAIL: gdb.reverse/break-precsave.exp: continue to breakpoint: foo backward (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: end of record log (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: go to end of main forward (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: main backward (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: reload precord save file
new FAIL: gdb.reverse/break-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/break-precsave.exp: save process recfile
new FAIL: gdb.reverse/break-precsave.exp: set forward
new FAIL: gdb.reverse/break-precsave.exp: set reverse
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar (the program is no longer running) <<2>>
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: bar backward (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: end (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo (the program is no longer running) <<2>>
new FAIL: gdb.reverse/break-reverse.exp: continue to breakpoint: foo backward (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: end of record log (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: main backward (the program is no longer running)
new FAIL: gdb.reverse/break-reverse.exp: set forward
new FAIL: gdb.reverse/break-reverse.exp: set reverse
new FAIL: gdb.reverse/consecutive-precsave.exp: continue to breakpoint in foo (the program is no longer running)
new FAIL: gdb.reverse/consecutive-precsave.exp: get breakpoint address for foo
new FAIL: gdb.reverse/consecutive-precsave.exp: reload precord save file
new FAIL: gdb.reverse/consecutive-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/consecutive-precsave.exp: save process recfile
new FAIL: gdb.reverse/consecutive-precsave.exp: set bp, 2nd instr
new FAIL: gdb.reverse/consecutive-precsave.exp: set reverse execution
new FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp in reverse, 1st instr (the program is no longer running)
new FAIL: gdb.reverse/consecutive-precsave.exp: stopped at bp, 2nd instr (the program is no longer running)
new FAIL: gdb.reverse/consecutive-reverse.exp: continue to breakpoint in foo (the program is no longer running)
new FAIL: gdb.reverse/consecutive-reverse.exp: get breakpoint address for foo
new FAIL: gdb.reverse/consecutive-reverse.exp: set bp, 2nd instr
new FAIL: gdb.reverse/consecutive-reverse.exp: set reverse execution
new FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp in reverse, 1st instr (the program is no longer running)
new FAIL: gdb.reverse/consecutive-reverse.exp: stopped at bp, 2nd instr (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: char_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: int_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: long_long_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: short_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: continue to breakpoint: void_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-precsave.exp: finish from char_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: finish from int_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: finish from long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: finish from long_long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: finish from short_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: finish from void_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: reload precord save file
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from char_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from int_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from long_long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from short_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: reverse finish from void_func (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/finish-precsave.exp: save process recfile
new FAIL: gdb.reverse/finish-precsave.exp: set reverse execution
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: char_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: int_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: long_long_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: short_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: continue to breakpoint: void_func (the program is no longer running) <<2>>
new FAIL: gdb.reverse/finish-reverse.exp: finish from char_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: finish from int_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: finish from long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: finish from long_long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: finish from short_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: finish from void_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from char_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from int_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from long_long_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from short_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: reverse finish from void_func (the program is no longer running)
new FAIL: gdb.reverse/finish-reverse.exp: set reverse execution
new FAIL: gdb.reverse/i386-precsave.exp: continue to end of main (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: reload precord save file
new FAIL: gdb.reverse/i386-precsave.exp: reverse to inc_dec_tests
new FAIL: gdb.reverse/i386-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: save process recfile
new FAIL: gdb.reverse/i386-precsave.exp: set breakpoint at end of main (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec eax 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec ebp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec ebx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec ecx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec edi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec edx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec esi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to dec esp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc eax 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc ebp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc ebx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc ecx 1st time
new FAIL: gdb.reverse/i386-precsave.exp: step to inc edi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc edx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc esi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-precsave.exp: step to inc esp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: continue to end of main (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: reverse to inc_dec_tests
new FAIL: gdb.reverse/i386-reverse.exp: set breakpoint at end of main (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec eax 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec ebp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec ebx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec ecx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec edi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec edx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec esi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to dec esp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc eax 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc ebp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc ebx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc ecx 1st time
new FAIL: gdb.reverse/i386-reverse.exp: step to inc edi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc edx 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc esi 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-reverse.exp: step to inc esp 1st time (the program is no longer running)
new FAIL: gdb.reverse/i386-sse-reverse.exp: continue to end of sse4_test (the program is no longer running)
new FAIL: gdb.reverse/i386-sse-reverse.exp: continue to end of sse_test #2 (the program is no longer running)
new FAIL: gdb.reverse/i386-sse-reverse.exp: continue to end of sse_test (the program is no longer running)
new FAIL: gdb.reverse/i386-sse-reverse.exp: continue to end of ssse3_test #2 (the program is no longer running)
new FAIL: gdb.reverse/i386-sse-reverse.exp: continue to end of ssse3_test (the program is no longer running)
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to addpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to addps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to addsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to addss
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to addsubpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to addsubps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to andpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to andps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to blendpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to blendps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to blendvpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to blendvps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cmppd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cmpps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cmpsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cmpss
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to comisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to comiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cvtdq2pd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cvtdq2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cvtpd2dq
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to cvtpd2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to divpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to divps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to divsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to divss
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to mulpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to mulps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to mulsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to mulss
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to orpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to orps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to pabsb
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to pabsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to pabsw
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to packssdw
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to packsswb
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to ucomisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to ucomiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to unpckhpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to unpckhps
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to xorpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: reverse-step to xorps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse addps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse addsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse addss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse addsubpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse addsubps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse andpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse andps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse blendps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse blendvpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse blendvps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cmppd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cmpps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cmpsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cmpss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse comisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse comiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cvtdq2pd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cvtdq2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cvtpd2dq
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse cvtpd2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse divpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse divps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse divsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse divss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse mulpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse mulps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse mulsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse mulss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse orpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse orps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse pabsb
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse pabsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse pabsw
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse packssdw
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse packsswb
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse ucomisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse ucomiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse unpckhpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse unpckhps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse xorpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 after reverse xorps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 at end of sse4_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 at end of sse_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm0 at end of ssse3_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse addps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse addsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse addss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse addsubpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse addsubps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse andpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse andps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse blendps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse blendvpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse blendvps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cmppd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cmpps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cmpsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cmpss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse comisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse comiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cvtdq2pd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cvtdq2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cvtpd2dq
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse cvtpd2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse divpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse divps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse divsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse divss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse mulpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse mulps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse mulsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse mulss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse orpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse orps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse pabsb
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse pabsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse pabsw
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse packssdw
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse packsswb
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse ucomisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse ucomiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse unpckhpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse unpckhps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse xorpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 after reverse xorps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 at end of sse4_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 at end of sse_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm1 at end of ssse3_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse addps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse addsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse addss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse addsubpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse addsubps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse andpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse andps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse blendps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse blendvpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse blendvps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cmppd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cmpps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cmpsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cmpss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse comisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse comiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cvtdq2pd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cvtdq2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cvtpd2dq
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse cvtpd2ps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse divpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse divps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse divsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse divss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse mulpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse mulps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse mulsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse mulss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse orpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse orps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse pabsb
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse pabsd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse pabsw
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse packssdw
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse packsswb
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse ucomisd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse ucomiss
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse unpckhpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse unpckhps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse xorpd
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 after reverse xorps
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 at end of sse4_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 at end of sse_test
new FAIL: gdb.reverse/i386-sse-reverse.exp: verify xmm2 at end of ssse3_test
new FAIL: gdb.reverse/i387-env-reverse.exp: begin testing fpu env (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<3>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<4>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<5>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<6>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<7>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 (the program is no longer running) <<8>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 <<3>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 <<4>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 <<5>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 <<6>>
new FAIL: gdb.reverse/i387-env-reverse.exp: push st0 <<7>>
new FAIL: gdb.reverse/i387-env-reverse.exp: record to end of main (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: restore FPU env (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: rewind to beginning of main (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: save FPU env in memory (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: set forward direction
new FAIL: gdb.reverse/i387-env-reverse.exp: set reverse direction
new FAIL: gdb.reverse/i387-env-reverse.exp: store status word in EAX (the program is no longer running)
new FAIL: gdb.reverse/i387-env-reverse.exp: verify eax == 0x8040000
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x1000
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x1000 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x1800
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x1800 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x2000
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x2000 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x2800
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x2800 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x3000
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x3000 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x3800
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x3800 <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify fstat == 0x800
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x3f
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x3f <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x3ff
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x3ff <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x3fff
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x3fff <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0x7
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0xf
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0xf <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0xff
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0xff <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0xfff
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag  == 0xfff <<2>>
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag == 0xffff
new FAIL: gdb.reverse/i387-env-reverse.exp: verify ftag == 0xffff <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: begin test st0 (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 0 (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 0 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 0.301029*
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 0.301029* (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 0.69314*
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 0.69314* (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 1 (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 1.4426950406* (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 1.44269504088*
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 3.14159265*
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 3.14159265* (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: push st0 == 3.3219280948* (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: record to end of main (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: rewind to beginning of main (the program is no longer running)
new FAIL: gdb.reverse/i387-stack-reverse.exp: set forward direction
new FAIL: gdb.reverse/i387-stack-reverse.exp: set reverse direction
new FAIL: gdb.reverse/i387-stack-reverse.exp: undo registers, st0-st7
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 0
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 0 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 0.301029*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 0.301029* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 0.69314*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 0.69314* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 1 <<3>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 1.442695040*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 1.442695040* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 3.14159265*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 3.14159265* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 3.321928094*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st0 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 0
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 0.301029*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 0.301029* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 0.69314*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 0.69314* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 1.4426950*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 1.442695040*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 3.14159265*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 3.14159265* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st1 == 3.3219280948* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 0.301029*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 0.301029* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 0.69314*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 1.442695040*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 1.44269506*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 3.14159265*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 3.14159265* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 3.3219280*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st2 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 0.301029*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 1.442695040*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 1.442695040* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 3.14159265*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 3.14159265* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st3 == 3.3219280948* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 1.442695040*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 1.442695040* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 3.14159265*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st4 == 3.3219280948* <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st5 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st5 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st5 == 1.44269504*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st5 == 3.32192809*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st5 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st6 == 1
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st6 == 1 <<2>>
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st6 == 3.3219280948*
new FAIL: gdb.reverse/i387-stack-reverse.exp: verify st7 == 1
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var forward-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var reverse-step
new FAIL: gdb.reverse/machinestate-precsave.exp: auto var step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 33 (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 45 (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 57 (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 71 (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: forward to 85 (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: function static forward
new FAIL: gdb.reverse/machinestate-precsave.exp: function static forward step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: function static forward-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: function static reverse-step
new FAIL: gdb.reverse/machinestate-precsave.exp: function static step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: go to end of main forward (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: module global forward past bp
new FAIL: gdb.reverse/machinestate-precsave.exp: module global step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: module static forward
new FAIL: gdb.reverse/machinestate-precsave.exp: module static step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: register var forward step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: register var forward-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse step-to
new FAIL: gdb.reverse/machinestate-precsave.exp: register var reverse-breakpoint
new FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change
new FAIL: gdb.reverse/machinestate-precsave.exp: register var step post-change <<2>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reload prec save file
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 33
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 45
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 57
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 71
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to 85
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse to main
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<10>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<2>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<3>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<4>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<5>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<6>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<7>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<8>>
new FAIL: gdb.reverse/machinestate-precsave.exp: reverse-step <<9>>
new FAIL: gdb.reverse/machinestate-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: save process recfile
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running)
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<10>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<11>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<12>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<13>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<14>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<15>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<2>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<3>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<4>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<5>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<6>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<7>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<8>>
new FAIL: gdb.reverse/machinestate-precsave.exp: step (the program is no longer running) <<9>>
new FAIL: gdb.reverse/machinestate.exp: auto var forward
new FAIL: gdb.reverse/machinestate.exp: auto var forward step-to
new FAIL: gdb.reverse/machinestate.exp: auto var forward-breakpoint
new FAIL: gdb.reverse/machinestate.exp: auto var reverse-breakpoint
new FAIL: gdb.reverse/machinestate.exp: auto var reverse-step
new FAIL: gdb.reverse/machinestate.exp: auto var step post-change
new FAIL: gdb.reverse/machinestate.exp: continue to breakpoint: end of main (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: forward to 33 (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: forward to 45 (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: forward to 57 (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: forward to 71 (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: forward to 85 (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: function static forward
new FAIL: gdb.reverse/machinestate.exp: function static forward step-to
new FAIL: gdb.reverse/machinestate.exp: function static forward-breakpoint
new FAIL: gdb.reverse/machinestate.exp: function static reverse-breakpoint
new FAIL: gdb.reverse/machinestate.exp: function static reverse-step
new FAIL: gdb.reverse/machinestate.exp: function static step post-change
new FAIL: gdb.reverse/machinestate.exp: module global forward past bp
new FAIL: gdb.reverse/machinestate.exp: module global step post-change
new FAIL: gdb.reverse/machinestate.exp: module static forward
new FAIL: gdb.reverse/machinestate.exp: module static step post-change
new FAIL: gdb.reverse/machinestate.exp: register var forward step-to
new FAIL: gdb.reverse/machinestate.exp: register var forward-breakpoint
new FAIL: gdb.reverse/machinestate.exp: register var reverse step-to
new FAIL: gdb.reverse/machinestate.exp: register var reverse-breakpoint
new FAIL: gdb.reverse/machinestate.exp: register var step post-change
new FAIL: gdb.reverse/machinestate.exp: register var step post-change <<2>>
new FAIL: gdb.reverse/machinestate.exp: reverse to 33
new FAIL: gdb.reverse/machinestate.exp: reverse to 45
new FAIL: gdb.reverse/machinestate.exp: reverse to 57
new FAIL: gdb.reverse/machinestate.exp: reverse to 71
new FAIL: gdb.reverse/machinestate.exp: reverse to 85
new FAIL: gdb.reverse/machinestate.exp: reverse to main
new FAIL: gdb.reverse/machinestate.exp: reverse-step
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<10>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<2>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<3>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<4>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<5>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<6>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<7>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<8>>
new FAIL: gdb.reverse/machinestate.exp: reverse-step <<9>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running)
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<10>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<11>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<12>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<13>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<14>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<15>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<2>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<3>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<4>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<5>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<6>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<7>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<8>>
new FAIL: gdb.reverse/machinestate.exp: step (the program is no longer running) <<9>>
new FAIL: gdb.reverse/rerun-prec.exp: restarting inferior
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 33 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 33 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 34 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 34 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 35 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 35 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 36 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 36 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 37 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 37 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 38 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 38 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 39 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 39 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 40 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 40 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 41 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 41 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 42 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 42 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 43 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 43 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 44 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 44 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 45 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 45 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 46 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 46 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 47 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 47 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 48 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 48 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 49 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 49 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 50 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 50 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 51 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 51 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 52 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 52 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 53 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 53 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 54 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 54 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 55 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 55 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 56 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 56 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 57 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 57 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 58 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 58 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 59 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 59 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 60 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 60 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 61 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 61 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 62 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 62 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 63 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to 63 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to ALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to ALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to BUS (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to BUS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to CHLD (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to CHLD (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to CONT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to CONT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to DANGER (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to DANGER (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to EMT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to EMT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to FPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to FPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to GRANT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to GRANT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to HUP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to HUP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to ILL (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to ILL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to IO (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to IO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to LOST (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to LOST (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to LWP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to LWP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to MSG (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to MSG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PHONE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PHONE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PIPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PIPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to POLL (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to POLL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PRIO (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PRIO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PROF (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PROF (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PWR (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to PWR (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to QUIT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to QUIT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to RETRACT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to RETRACT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SAK (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SAK (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SEGV (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SEGV (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SOUND (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SOUND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SYS (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to SYS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TERM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TERM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TSTP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TSTP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TTIN (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TTIN (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TTOU (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to TTOU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to URG (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to URG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to USR1 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to USR1 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to USR2 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to USR2 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to VTALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to VTALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to WAITING (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to WAITING (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to WINCH (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to WINCH (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to WIND (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to WIND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to XCPU (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to XCPU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: advance to XFSZ (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: advance to XFSZ (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: continue (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: continue to sigall exit (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 33 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 33 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 34 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 34 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 35 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 35 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 36 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 36 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 37 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 37 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 38 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 38 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 39 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 39 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 40 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 40 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 41 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 41 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 42 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 42 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 43 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 43 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 44 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 44 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 45 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 45 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 46 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 46 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 47 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 47 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 48 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 48 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 49 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 49 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 50 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 50 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 51 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 51 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 52 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 52 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 53 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 53 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 54 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 54 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 55 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 55 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 56 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 56 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 57 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 57 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 58 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 58 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 59 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 59 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 60 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 60 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 61 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 61 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 62 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 62 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 63 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal 63 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal ABRT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal ABRT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal ALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal ALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal BUS (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal BUS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal CHLD (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal CHLD (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal CONT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal CONT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal DANGER (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal DANGER (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal EMT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal EMT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal FPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal FPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal GRANT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal GRANT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal HUP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal HUP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal ILL (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal ILL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal IO (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal IO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal LOST (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal LOST (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal LWP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal LWP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal MSG (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal MSG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PHONE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PHONE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PIPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PIPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal POLL (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal POLL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PRIO (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PRIO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PROF (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PROF (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PWR (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal PWR (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal QUIT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal QUIT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal RETRACT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal RETRACT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SAK (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SAK (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SEGV (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SEGV (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SOUND (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SOUND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SYS (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal SYS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TERM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TSTP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TSTP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TTIN (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TTIN (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TTOU (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal TTOU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal URG (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal URG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal USR1 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal USR1 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal USR2 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal USR2 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal VTALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal VTALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WAITING (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WAITING (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WINCH (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WINCH (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WIND (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal WIND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal XCPU (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal XCPU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: get signal XFSZ (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: get signal XFSZ (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: reload precord save file
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_33
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_34
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_35
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_36
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_37
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_38
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_39
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_40
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_41
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_42
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_43
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_44
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_45
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_46
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_47
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_48
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_49
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_50
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_51
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_52
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_53
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_54
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_55
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_56
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_57
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_58
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_59
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_60
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_61
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_62
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_63
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ABRT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ALRM
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_BUS
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CHLD
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_CONT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_EMT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_FPE
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_GRANT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_HUP
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_ILL
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_IO
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LOST
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_LWP
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_MSG
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PHONE
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_POLL
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PRIO
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PROF
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_PWR
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SAK
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SOUND
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_SYS
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TERM
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TSTP
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTIN
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_TTOU
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_URG
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR1
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_USR2
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WAITING
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_WIND
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XCPU
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to gen_XFSZ
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 33
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 34
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 35
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 36
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 37
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 38
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 39
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 40
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 41
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 42
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 43
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 44
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 45
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 46
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 47
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 48
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 49
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 50
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 51
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 52
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 53
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 54
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 55
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 56
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 57
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 58
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 59
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 60
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 61
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 62
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of 63
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ABRT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ALRM
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of BUS
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CHLD
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of CONT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of DANGER
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of EMT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of FPE
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of GRANT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of HUP
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of ILL
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of IO
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LOST
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of LWP
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of MSG
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PHONE
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PIPE
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of POLL
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PRIO
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PROF
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of PWR
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of QUIT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of RETRACT
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SAK
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SEGV
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SOUND
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of SYS
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TERM
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TSTP
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTIN
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of TTOU
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of URG
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR1
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of USR2
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of VTALRM
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WAITING
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WINCH
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of WIND
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XCPU
new FAIL: gdb.reverse/sigall-precsave.exp: reverse to handler of XFSZ
new FAIL: gdb.reverse/sigall-precsave.exp: save process recfile
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 33 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 33 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 34 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 34 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 35 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 35 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 36 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 36 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 37 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 37 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 38 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 38 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 39 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 39 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 40 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 40 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 41 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 41 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 42 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 42 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 43 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 43 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 44 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 44 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 45 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 45 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 46 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 46 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 47 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 47 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 48 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 48 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 49 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 49 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 50 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 50 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 51 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 51 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 52 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 52 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 53 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 53 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 54 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 54 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 55 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 55 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 56 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 56 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 57 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 57 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 58 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 58 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 59 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 59 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 60 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 60 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 61 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 61 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 62 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 62 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 63 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal 63 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal ABRT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal ABRT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal ALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal ALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal BUS (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal BUS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal CHLD (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal CHLD (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal CONT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal CONT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal DANGER (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal DANGER (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal EMT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal EMT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal FPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal FPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal GRANT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal GRANT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal HUP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal HUP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal ILL (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal ILL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal IO (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal IO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal LOST (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal LOST (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal LWP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal LWP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal MSG (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal MSG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PHONE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PHONE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PIPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PIPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal POLL (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal POLL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PRIO (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PRIO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PROF (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PROF (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PWR (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal PWR (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal QUIT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal QUIT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal RETRACT (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal RETRACT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SAK (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SAK (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SEGV (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SEGV (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SOUND (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SOUND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SYS (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal SYS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TERM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TSTP (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TSTP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TTIN (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TTIN (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TTOU (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal TTOU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal URG (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal URG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal USR1 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal USR1 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal USR2 (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal USR2 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal VTALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal VTALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal WAITING (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal WAITING (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal WINCH (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal WINCH (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal WIND (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal WIND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal XCPU (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal XCPU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-precsave.exp: send signal XFSZ (the program is no longer running)
new FAIL: gdb.reverse/sigall-precsave.exp: send signal XFSZ (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 33 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 33 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 34 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 34 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 35 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 35 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 36 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 36 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 37 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 37 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 38 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 38 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 39 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 39 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 40 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 40 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 41 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 41 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 42 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 42 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 43 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 43 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 44 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 44 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 45 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 45 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 46 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 46 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 47 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 47 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 48 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 48 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 49 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 49 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 50 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 50 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 51 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 51 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 52 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 52 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 53 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 53 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 54 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 54 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 55 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 55 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 56 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 56 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 57 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 57 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 58 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 58 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 59 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 59 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 60 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 60 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 61 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 61 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 62 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 62 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 63 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to 63 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to ALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to ALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to BUS (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to BUS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to CHLD (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to CHLD (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to CONT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to CONT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to DANGER (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to DANGER (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to EMT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to EMT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to FPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to FPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to GRANT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to GRANT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to HUP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to HUP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to ILL (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to ILL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to IO (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to IO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to LOST (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to LOST (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to LWP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to LWP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to MSG (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to MSG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PHONE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PHONE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PIPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PIPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to POLL (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to POLL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PRIO (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PRIO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PROF (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PROF (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PWR (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to PWR (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to QUIT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to QUIT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to RETRACT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to RETRACT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SAK (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SAK (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SEGV (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SEGV (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SOUND (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SOUND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SYS (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to SYS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TERM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TERM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TSTP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TSTP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TTIN (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TTIN (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TTOU (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to TTOU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to URG (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to URG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to USR1 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to USR1 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to USR2 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to USR2 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to VTALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to VTALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to WAITING (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to WAITING (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to WINCH (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to WINCH (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to WIND (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to WIND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to XCPU (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to XCPU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: advance to XFSZ (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: advance to XFSZ (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 33 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 33 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 34 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 34 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 35 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 35 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 36 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 36 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 37 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 37 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 38 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 38 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 39 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 39 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 40 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 40 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 41 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 41 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 42 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 42 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 43 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 43 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 44 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 44 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 45 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 45 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 46 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 46 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 47 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 47 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 48 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 48 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 49 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 49 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 50 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 50 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 51 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 51 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 52 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 52 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 53 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 53 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 54 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 54 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 55 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 55 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 56 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 56 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 57 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 57 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 58 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 58 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 59 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 59 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 60 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 60 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 61 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 61 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 62 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 62 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 63 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal 63 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal ABRT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal ABRT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal ALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal ALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal BUS (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal BUS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal CHLD (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal CHLD (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal CONT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal CONT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal DANGER (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal DANGER (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal EMT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal EMT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal FPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal FPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal GRANT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal GRANT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal HUP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal HUP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal ILL (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal ILL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal IO (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal IO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal LOST (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal LOST (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal LWP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal LWP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal MSG (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal MSG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PHONE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PHONE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PIPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PIPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal POLL (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal POLL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PRIO (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PRIO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PROF (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PROF (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PWR (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal PWR (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal QUIT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal QUIT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal RETRACT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal RETRACT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SAK (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SAK (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SEGV (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SEGV (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SOUND (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SOUND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SYS (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal SYS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TERM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TSTP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TSTP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TTIN (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TTIN (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TTOU (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal TTOU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal URG (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal URG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal USR1 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal USR1 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal USR2 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal USR2 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal VTALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal VTALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal WAITING (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal WAITING (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal WINCH (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal WINCH (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal WIND (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal WIND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal XCPU (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal XCPU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: get signal XFSZ (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: get signal XFSZ (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_33
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_34
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_35
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_36
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_37
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_38
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_39
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_40
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_41
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_42
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_43
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_44
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_45
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_46
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_47
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_48
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_49
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_50
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_51
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_52
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_53
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_54
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_55
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_56
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_57
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_58
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_59
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_60
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_61
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_62
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_63
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ABRT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ALRM
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_BUS
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_CHLD
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_CONT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_DANGER
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_EMT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_FPE
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_GRANT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_HUP
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_ILL
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_IO
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_LOST
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_LWP
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_MSG
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PHONE
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PIPE
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_POLL
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PRIO
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PROF
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_PWR
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_QUIT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_RETRACT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SAK
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SEGV
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SOUND
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_SYS
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TERM
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TSTP
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TTIN
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_TTOU
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_URG
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_USR1
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_USR2
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_VTALRM
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WAITING
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WINCH
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_WIND
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_XCPU
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to gen_XFSZ
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 33
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 34
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 35
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 36
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 37
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 38
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 39
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 40
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 41
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 42
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 43
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 44
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 45
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 46
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 47
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 48
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 49
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 50
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 51
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 52
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 53
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 54
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 55
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 56
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 57
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 58
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 59
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 60
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 61
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 62
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of 63
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ABRT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ALRM
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of BUS
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CHLD
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of CONT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of DANGER
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of EMT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of FPE
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of GRANT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of HUP
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of ILL
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of IO
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LOST
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of LWP
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of MSG
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PHONE
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PIPE
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of POLL
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PRIO
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PROF
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of PWR
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of QUIT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of RETRACT
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SAK
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SEGV
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SOUND
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of SYS
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TERM
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TSTP
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTIN
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of TTOU
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of URG
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR1
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of USR2
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of VTALRM
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WAITING
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WINCH
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of WIND
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XCPU
new FAIL: gdb.reverse/sigall-reverse.exp: reverse to handler of XFSZ
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 33 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 33 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 34 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 34 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 35 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 35 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 36 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 36 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 37 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 37 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 38 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 38 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 39 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 39 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 40 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 40 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 41 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 41 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 42 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 42 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 43 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 43 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 44 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 44 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 45 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 45 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 46 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 46 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 47 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 47 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 48 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 48 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 49 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 49 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 50 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 50 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 51 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 51 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 52 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 52 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 53 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 53 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 54 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 54 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 55 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 55 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 56 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 56 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 57 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 57 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 58 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 58 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 59 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 59 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 60 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 60 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 61 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 61 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 62 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 62 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 63 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal 63 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal ABRT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal ABRT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal ALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal ALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal BUS (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal BUS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal CHLD (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal CHLD (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal CONT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal CONT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal DANGER (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal DANGER (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal EMT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal EMT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal FPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal FPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal GRANT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal GRANT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal HUP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal HUP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal ILL (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal ILL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal IO (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal IO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal LOST (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal LOST (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal LWP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal LWP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal MSG (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal MSG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PHONE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PHONE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PIPE (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PIPE (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal POLL (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal POLL (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PRIO (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PRIO (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PROF (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PROF (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PWR (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal PWR (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal QUIT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal QUIT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal RETRACT (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal RETRACT (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SAK (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SAK (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SEGV (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SEGV (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SOUND (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SOUND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SYS (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal SYS (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TERM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TSTP (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TSTP (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TTIN (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TTIN (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TTOU (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal TTOU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal URG (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal URG (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal USR1 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal USR1 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal USR2 (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal USR2 (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal VTALRM (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal VTALRM (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal WAITING (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal WAITING (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal WINCH (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal WINCH (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal WIND (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal WIND (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal XCPU (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal XCPU (the program is no longer running) <<2>>
new FAIL: gdb.reverse/sigall-reverse.exp: send signal XFSZ (the program is no longer running)
new FAIL: gdb.reverse/sigall-reverse.exp: send signal XFSZ (the program is no longer running) <<2>>
new FAIL: gdb.reverse/solib-precsave.exp: forward to end part one (the program is no longer running)
new FAIL: gdb.reverse/solib-precsave.exp: reload core file
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next first shr1
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next generic
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next over solib function two
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next second shr1
new FAIL: gdb.reverse/solib-precsave.exp: reverse-next third shr1
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step back to main two
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step first shr1
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step generic
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step into solib function two
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step second shr1
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step third shr1
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function one
new FAIL: gdb.reverse/solib-precsave.exp: reverse-step within solib function two
new FAIL: gdb.reverse/solib-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/solib-precsave.exp: run until end part one (the program is no longer running)
new FAIL: gdb.reverse/solib-precsave.exp: run until end part two (the program is no longer running)
new FAIL: gdb.reverse/solib-precsave.exp: save process recfile
new FAIL: gdb.reverse/solib-reverse.exp: forward to end part one (the program is no longer running)
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next first shr1
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next generic
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next over solib function two
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next second shr1
new FAIL: gdb.reverse/solib-reverse.exp: reverse-next third shr1
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step back to main two
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step first shr1
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step generic
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step into solib function two
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step second shr1
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step third shr1
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function one
new FAIL: gdb.reverse/solib-reverse.exp: reverse-step within solib function two
new FAIL: gdb.reverse/solib-reverse.exp: run until end part one (the program is no longer running)
new FAIL: gdb.reverse/solib-reverse.exp: run until end part two (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: finish out of fn call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: next over call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: next test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: next test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reload core file
new FAIL: gdb.reverse/step-precsave.exp: reverse next over call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse next test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse next test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse step into fn call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse step out of called fn (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse step test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse step test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse stepi from a function call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: reverse stepi thru function return (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: save process recfile
new FAIL: gdb.reverse/step-precsave.exp: set reverse execution
new FAIL: gdb.reverse/step-precsave.exp: simple reverse stepi (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: simple stepi (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: step into call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: step test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: step test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: step up to call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: stepi back from function call (the program is no longer running)
new FAIL: gdb.reverse/step-precsave.exp: stepi into function call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: finish out of fn call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: next over call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: next test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: next test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse next over call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse next test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse next test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse step into fn call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse step out of called fn (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse step test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse step test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse stepi from a function call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: reverse stepi thru function return (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: set reverse execution
new FAIL: gdb.reverse/step-reverse.exp: simple reverse stepi (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: simple stepi (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: step into call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: step test 1 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: step test 2 (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: step up to call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: stepi back from function call (the program is no longer running)
new FAIL: gdb.reverse/step-reverse.exp: stepi into function call (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: advance to factorial (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: set reverse execution
new FAIL: gdb.reverse/until-reverse.exp: until factorial, recursive function (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-reverse.exp: until line number (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker1 (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: continue to breakpoint: marker2 (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: reload core file
new FAIL: gdb.reverse/watch-precsave.exp: replay forward to marker2 (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: run to end of main (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: save process recfile
new FAIL: gdb.reverse/watch-precsave.exp: set forward
new FAIL: gdb.reverse/watch-precsave.exp: set reverse
new FAIL: gdb.reverse/watch-precsave.exp: set reverse <<2>>
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, HW, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit in reverse, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, forward replay, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-precsave.exp: watchpoint hit, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker1 (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: continue to breakpoint: marker2 (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: replay forward to marker2 (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: set forward
new FAIL: gdb.reverse/watch-reverse.exp: set reverse
new FAIL: gdb.reverse/watch-reverse.exp: set reverse <<2>>
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, HW, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit in reverse, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fifth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, first time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, forward replay, third time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, fourth time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, second time (the program is no longer running)
new FAIL: gdb.reverse/watch-reverse.exp: watchpoint hit, third time (the program is no longer running)
new FAIL: gdb.server/ext-run.exp: continue to main
new FAIL: gdb.server/ext-run.exp: get process list (pattern 1)
new FAIL: gdb.server/ext-run.exp: load new file without any gdbserver inferior
new FAIL: gdb.server/ext-run.exp: monitor exit
new FAIL: gdb.server/file-transfer.exp: compare binary file
new FAIL: gdb.server/file-transfer.exp: compare text file
new FAIL: gdb.server/file-transfer.exp: deleted binary file
new FAIL: gdb.server/file-transfer.exp: deleted text file
new FAIL: gdb.server/file-transfer.exp: get binary file
new FAIL: gdb.server/file-transfer.exp: get text file
new FAIL: gdb.server/file-transfer.exp: put text file
new FAIL: gdb.server/no-thread-db.exp: continue to breakpoint: after tls assignment (the program is no longer running)
new FAIL: gdb.server/no-thread-db.exp: print foo
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-kill.exp: tstatus
new FAIL: gdb.server/server-mon.exp: monitor
new FAIL: gdb.server/server-mon.exp: monitor set debug 0
new FAIL: gdb.server/server-mon.exp: monitor set debug 1
new FAIL: gdb.server/server-mon.exp: monitor set debug-format all
new FAIL: gdb.server/server-mon.exp: monitor set debug-format none
new FAIL: gdb.server/server-mon.exp: monitor set remote-debug 0
new FAIL: gdb.server/server-mon.exp: monitor set remote-debug 1
new FAIL: gdb.server/server-run.exp: continue to main (the program is no longer running)
new FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach (pass 1), pending signal catch
new FAIL: gdb.threads/attach-into-signal.exp: nonthreaded: attach (pass 1), pending signal catch <<2>>
new FAIL: gdb.threads/attach-into-signal.exp: threaded: attach (pass 1), pending signal catch
new FAIL: gdb.threads/attach-into-signal.exp: threaded: attach (pass 1), pending signal catch <<2>>
new FAIL: gdb.threads/attach-stopped.exp: nonthreaded: attach2 to stopped bt
new FAIL: gdb.threads/attach-stopped.exp: threaded: attach2 to stopped bt
new FAIL: gdb.threads/bp_in_thread.exp: run to noreturn (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 0 (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 1 (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 2 (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 3 (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: about to create philosopher: 4 (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: main thread's sleep (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: continue to breakpoint: thread 5's print, pass: 0 (the program is no longer running)
new FAIL: gdb.threads/linux-dp.exp: create philosopher: 0
new FAIL: gdb.threads/linux-dp.exp: create philosopher: 1
new FAIL: gdb.threads/linux-dp.exp: create philosopher: 2
new FAIL: gdb.threads/linux-dp.exp: create philosopher: 3
new FAIL: gdb.threads/linux-dp.exp: create philosopher: 4
new FAIL: gdb.threads/linux-dp.exp: first thread-specific breakpoint hit
new FAIL: gdb.threads/linux-dp.exp: found an interesting thread
new FAIL: gdb.threads/linux-dp.exp: info threads 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/linux-dp.exp: manager thread found (not found) when expected
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 1
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 2
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 3
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 4
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 5
new FAIL: gdb.threads/linux-dp.exp: philosopher is distinct: 6
new FAIL: gdb.threads/linux-dp.exp: selected thread: 1
new FAIL: gdb.threads/linux-dp.exp: selected thread: 2
new FAIL: gdb.threads/linux-dp.exp: selected thread: 3
new FAIL: gdb.threads/linux-dp.exp: selected thread: 4
new FAIL: gdb.threads/linux-dp.exp: selected thread: 5
new FAIL: gdb.threads/linux-dp.exp: selected thread: 6
new FAIL: gdb.threads/linux-dp.exp: setting breakpoint at print_philosopher thread 5
new FAIL: gdb.threads/linux-dp.exp: thread-specific breakpoint is thread-specific
new FAIL: gdb.threads/manythreads.exp: check thread name
new FAIL: gdb.threads/manythreads.exp: first continue (the program is no longer running)
new FAIL: gdb.threads/manythreads.exp: give a name to the thread
new FAIL: gdb.threads/manythreads.exp: info threads
new FAIL: gdb.threads/manythreads.exp: second continue (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 1 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 10 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 11 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 12 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 13 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 14 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 15 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 16 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 17 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 18 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 19 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 2 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 20 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 21 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 22 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 23 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 24 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 25 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 26 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 27 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 28 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 29 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 3 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 30 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 31 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 4 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 5 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 6 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 7 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 8 (the program is no longer running)
new FAIL: gdb.threads/multi-create.exp: continue to breakpoint 9 (the program is no longer running)
new FAIL: gdb.threads/multiple-step-overs.exp: next (the program is no longer running)
new FAIL: gdb.threads/print-threads.exp: all threads ran once (the program is no longer running)
new FAIL: gdb.threads/print-threads.exp: all threads ran once (the program is no longer running) <<2>>
new FAIL: gdb.threads/print-threads.exp: all threads ran once (the program is no longer running) <<3>>
new FAIL: gdb.threads/print-threads.exp: set var slow = 0
new FAIL: gdb.threads/print-threads.exp: set var slow = 1
new FAIL: gdb.threads/print-threads.exp: set var slow = 1 (2)
new FAIL: gdb.threads/print-threads.exp: setting breakpoint at kill
new FAIL: gdb.threads/pthread_cond_wait.exp: backtrace in blocked thread
new FAIL: gdb.threads/pthread_cond_wait.exp: run to break_me (the program is no longer running)
new FAIL: gdb.threads/staticthreads.exp: Continue to main's call of sem_post (the program is no longer running)
new FAIL: gdb.threads/staticthreads.exp: handle SIG32 helps (the program is no longer running)
new FAIL: gdb.threads/staticthreads.exp: rerun to main
new FAIL: gdb.threads/switch-threads.exp: next (the program is no longer running)
new FAIL: gdb.threads/thread-find.exp: continue to breakpoint: main thread's sleep (the program is no longer running)
new FAIL: gdb.threads/thread-find.exp: find thread name 1
new FAIL: gdb.threads/thread-find.exp: find thread name 2
new FAIL: gdb.threads/thread-find.exp: find thread name 3
new FAIL: gdb.threads/thread-find.exp: find thread name 4
new FAIL: gdb.threads/thread-find.exp: find thread name 5
new FAIL: gdb.threads/thread-find.exp: find thread name 6
new FAIL: gdb.threads/thread-find.exp: info thread foo
new FAIL: gdb.threads/thread-find.exp: info thread foo -1
new FAIL: gdb.threads/thread-find.exp: info threads 2 4 6
new FAIL: gdb.threads/thread-find.exp: info threads 3-3
new FAIL: gdb.threads/thread-find.exp: info threads 3-5
new FAIL: gdb.threads/thread-find.exp: name thread 1
new FAIL: gdb.threads/thread-find.exp: name thread 2
new FAIL: gdb.threads/thread-find.exp: name thread 3
new FAIL: gdb.threads/thread-find.exp: name thread 4
new FAIL: gdb.threads/thread-find.exp: name thread 5
new FAIL: gdb.threads/thread-find.exp: name thread 6
new FAIL: gdb.threads/thread-find.exp: test inverted range
new FAIL: gdb.threads/thread-find.exp: test regular exp
new FAIL: gdb.threads/thread-specific.exp: continue to breakpoint: all threads started (the program is no longer running)
new FAIL: gdb.threads/thread-specific.exp: get threads list (no threads)
new FAIL: gdb.threads/threadapply.exp: go down and check selected frame
new FAIL: gdb.threads/threadapply.exp: go up in the stack frame
new FAIL: gdb.threads/threadapply.exp: run a simple print command on all threads
new FAIL: gdb.threads/threadapply.exp: step to the thread_function (the program is no longer running)
new FAIL: gdb.threads/threadapply.exp: thread apply all backthread
new FAIL: gdb.threads/threadapply.exp: thread apply all detach
new FAIL: gdb.threads/threxit-hop-specific.exp: get past the thread specific breakpoint (the program is no longer running)
new FAIL: gdb.threads/threxit-hop-specific.exp: set thread specific breakpoint
new FAIL: gdb.threads/watchthreads.exp: combination of threaded watchpoints = 30
new FAIL: gdb.threads/watchthreads.exp: first watchpoint on args[0] hit
new FAIL: gdb.threads/watchthreads.exp: first watchpoint on args[1] hit
new FAIL: gdb.threads/watchthreads.exp: threaded watch loop (the program is no longer running)
new FAIL: gdb.threads/watchthreads.exp: watchpoint on args[0] hit in thread
new FAIL: gdb.threads/watchthreads.exp: watchpoint on args[1] hit in thread
new FAIL: gdb.threads/watchthreads2.exp: all threads started
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running)
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running) <<2>>
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running) <<3>>
new FAIL: gdb.threads/watchthreads2.exp: run to thread_started (the program is no longer running) <<4>>
new FAIL: gdb.trace/ax.exp: maint agent-eval &gdb_long_test == &gdb_short_test
new FAIL: gdb.trace/ax.exp: maint agent-eval 12
============================




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

* Failures on Debian-x86_64-native-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
                   ` (11 preceding siblings ...)
  2015-02-17 19:41 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj
@ 2015-02-17 20:14 ` sergiodj
  12 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 20:14 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-gdbserver-m64/builds/176>

Commit(s) tested:
	5991bec1d4dbd23b476dc90bc6d1ba70e044898e

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

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/info-os.exp: get process groups
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.base/info-os.exp: get process groups
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.dwarf2/gdb-index.exp: touch binary
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-05-30 11:03 [binutils-gdb/gdb-7.9-branch] Unbreak DJGPP build of GDB sergiodj+buildbot
@ 2015-05-30 11:58 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-05-30 11:58 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	f045cbadc7e222520eb457966ae739ff53ddfd76

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (got interactive prompt)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (got interactive prompt)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-05-29 17:52 [binutils-gdb/gdb-7.9-branch] PR gdb/18464: Do not crash on unrecognized GNU .note.ABI-tag values sergiodj+buildbot
@ 2015-05-29 19:32 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-05-29 19:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	509cc2cf714f6a194ab27610f4db429579f6090b

Author(s) (in the same order as the commits):
	Roland McGrath <mcgrathr@chromium.org>

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

*** Regressions found ***
============================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-05-13 17:38 [binutils-gdb/gdb-7.9-branch] Set GDB version number to 7.9.1 sergiodj+buildbot
@ 2015-05-13 19:20 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-05-13 19:20 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	aca9b649bfff6440734703d5d31f88b70ff57824

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until line number
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
PASS -> FAIL: gdb.mi/mi-var-cp.exp: expression for a1.public.2_anonymous.public.1_anonymous.public.1_anonymous.public.f
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until line number
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-05-02 22:52 [binutils-gdb/gdb-7.9-branch] Subject: [PATCH] Fix pascal behavior for class fields with testcase sergiodj+buildbot
@ 2015-05-02 23:45 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-05-02 23:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	6ed34db8858cc18a5a941f32f22bb250017c3d48

Author(s) (in the same order as the commits):
	Pierre Muller <muller@ics.u-strasbg.fr>

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

*** Regressions found ***
============================
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (got interactive prompt)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-04-29  6:16 [binutils-gdb/gdb-7.9-branch] PR python/18299 sergiodj+buildbot
@ 2015-04-29  7:30 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-04-29  7:30 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	7d4281ee53df975135c132970e053a74bb18877a

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.base/callfuncs.exp: finish after stop in call dummy preserves register contents
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
PASS -> FAIL: gdb.base/callfuncs.exp: finish after stop in call dummy preserves register contents
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (got interactive prompt)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-03-31 15:30 [binutils-gdb/gdb-7.9-branch] Fix the triplet regexp to recognize triplets, not only quadruplets sergiodj+buildbot
@ 2015-03-31 17:17 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-03-31 17:17 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	2e9f68f0cf32bad824100dfb5d05c4235cf59ff3

Author(s) (in the same order as the commits):
	Matthias Klose <doko@ubuntu.com>

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

*** Regressions found ***
============================
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (got interactive prompt)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: until line number (got interactive prompt)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-03-21 11:59 [binutils-gdb/gdb-7.9-branch] Fix undefined behavior in TUI's TAB expansion sergiodj+buildbot
@ 2015-03-21 14:39 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-03-21 14:39 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	4fa4c2f7bed85f7cb116466d3cf194cdb6271c60

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-26 14:38 [binutils-gdb/gdb-7.9-branch] Change // comment in gdb/compile/ sergiodj+buildbot
@ 2015-02-26 15:13 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-02-26 15:13 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	09de64b93c2402e068daf0bce1c4a1dda833b646

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

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

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-26 12:11 [binutils-gdb/gdb-7.9-branch] Remove // comment in gdb/iq2000-tdep.c sergiodj+buildbot
@ 2015-02-26 13:41 ` sergiodj+buildbot
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj+buildbot @ 2015-02-26 13:41 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	f57347efc0338cf65539f965f171a318c4a4e523

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================


*** Regressions against the baseline ***
============================
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Large
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small
new FAIL: gdb.ada/array_return.exp: value printed by finish of Create_Small_Float_Vector
new FAIL: gdb.ada/call_pn.exp: print last_node_id after calling pn
new FAIL: gdb.ada/call_pn.exp: print pn (4321)
new FAIL: gdb.ada/interface.exp: print s
new FAIL: gdb.ada/iwide.exp: print My_Drawable
new FAIL: gdb.ada/iwide.exp: print d_access.all
new FAIL: gdb.ada/iwide.exp: print dp_access.all
new FAIL: gdb.ada/iwide.exp: print s_access.all
new FAIL: gdb.ada/iwide.exp: print sp_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/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/str_uninit.exp: print my_str
new FAIL: gdb.ada/tagged.exp: print obj
new FAIL: gdb.ada/tagged.exp: ptype obj
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/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
new FAIL: gdb.base/async-shell.exp: run &
new FAIL: gdb.base/attach-pie-noexec.exp: attach
new FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
new FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw off: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted off: auto-hw on: step in ro region
new FAIL: gdb.base/breakpoint-in-ro-region.exp: always-inserted on: auto-hw on: step in ro region
new FAIL: gdb.base/callfuncs.exp: noproto: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/callfuncs.exp: print *((int *(*) (void)) voidfunc)()
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
new FAIL: gdb.base/checkpoint.exp: Diff input and output one
new FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: info checkpoints one
new FAIL: gdb.base/checkpoint.exp: info checkpoints two
new FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
new FAIL: gdb.base/checkpoint.exp: outfile still open 1
new FAIL: gdb.base/checkpoint.exp: outfile still open 10
new FAIL: gdb.base/checkpoint.exp: outfile still open 2
new FAIL: gdb.base/checkpoint.exp: outfile still open 3
new FAIL: gdb.base/checkpoint.exp: outfile still open 4
new FAIL: gdb.base/checkpoint.exp: outfile still open 5
new FAIL: gdb.base/checkpoint.exp: outfile still open 6
new FAIL: gdb.base/checkpoint.exp: outfile still open 7
new FAIL: gdb.base/checkpoint.exp: outfile still open 8
new FAIL: gdb.base/checkpoint.exp: outfile still open 9
new FAIL: gdb.base/checkpoint.exp: restart 0 one
new FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
new FAIL: gdb.base/checkpoint.exp: restart 1 one
new FAIL: gdb.base/checkpoint.exp: restart 1 three
new FAIL: gdb.base/checkpoint.exp: restart 1 two
new FAIL: gdb.base/checkpoint.exp: restart 10 one
new FAIL: gdb.base/checkpoint.exp: restart 10 three
new FAIL: gdb.base/checkpoint.exp: restart 2 one
new FAIL: gdb.base/checkpoint.exp: restart 2 three
new FAIL: gdb.base/checkpoint.exp: restart 2 two
new FAIL: gdb.base/checkpoint.exp: restart 3 one
new FAIL: gdb.base/checkpoint.exp: restart 3 three
new FAIL: gdb.base/checkpoint.exp: restart 3 two
new FAIL: gdb.base/checkpoint.exp: restart 4 one
new FAIL: gdb.base/checkpoint.exp: restart 4 three
new FAIL: gdb.base/checkpoint.exp: restart 4 two
new FAIL: gdb.base/checkpoint.exp: restart 5 one
new FAIL: gdb.base/checkpoint.exp: restart 5 three
new FAIL: gdb.base/checkpoint.exp: restart 5 two
new FAIL: gdb.base/checkpoint.exp: restart 6 one
new FAIL: gdb.base/checkpoint.exp: restart 6 three
new FAIL: gdb.base/checkpoint.exp: restart 6 two
new FAIL: gdb.base/checkpoint.exp: restart 7 one
new FAIL: gdb.base/checkpoint.exp: restart 7 three
new FAIL: gdb.base/checkpoint.exp: restart 7 two
new FAIL: gdb.base/checkpoint.exp: restart 8 one
new FAIL: gdb.base/checkpoint.exp: restart 8 three
new FAIL: gdb.base/checkpoint.exp: restart 9 one
new FAIL: gdb.base/checkpoint.exp: restart 9 three
new FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: verify i 1 one
new FAIL: gdb.base/checkpoint.exp: verify i 10 one
new FAIL: gdb.base/checkpoint.exp: verify i 2 one
new FAIL: gdb.base/checkpoint.exp: verify i 3 one
new FAIL: gdb.base/checkpoint.exp: verify i 4 one
new FAIL: gdb.base/checkpoint.exp: verify i 5 one
new FAIL: gdb.base/checkpoint.exp: verify i 6 one
new FAIL: gdb.base/checkpoint.exp: verify i 7 one
new FAIL: gdb.base/checkpoint.exp: verify i 8 one
new FAIL: gdb.base/checkpoint.exp: verify i 9 one
new FAIL: gdb.base/checkpoint.exp: verify lines 1 two
new FAIL: gdb.base/checkpoint.exp: verify lines 10 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 one
new FAIL: gdb.base/checkpoint.exp: verify lines 2 two
new FAIL: gdb.base/checkpoint.exp: verify lines 3 one
new FAIL: gdb.base/checkpoint.exp: verify lines 3 two
new FAIL: gdb.base/checkpoint.exp: verify lines 4 one
new FAIL: gdb.base/checkpoint.exp: verify lines 4 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 one
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two
new FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
new FAIL: gdb.base/checkpoint.exp: verify lines 6 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 one
new FAIL: gdb.base/checkpoint.exp: verify lines 7 two
new FAIL: gdb.base/checkpoint.exp: verify lines 8 one
new FAIL: gdb.base/checkpoint.exp: verify lines 9 one
new FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/display.exp: first disp
new FAIL: gdb.base/display.exp: next hit
new FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
new FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
new FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
new FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: continue to decr
new FAIL: gdb.base/func-ptrs.exp: continue to incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from decr (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: go back to main from incr, second time (the program is no longer running)
new FAIL: gdb.base/func-ptrs.exp: move up to decr
new FAIL: gdb.base/func-ptrs.exp: set calc to incr
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
new FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
new FAIL: gdb.base/gdbindex-stabs.exp: list stabs_function
new FAIL: gdb.base/gnu-debugdata.exp: have symtab
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-1: continue to breakpoint: break here 2
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: continue to breakpoint: break here 1
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: continue to breakpoint: break here 2
new FAIL: gdb.base/jit-so.exp: one_jit_test-2: info function jit_function
new FAIL: gdb.base/jit.exp: PIE: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-1: info function ^jit_function
new FAIL: gdb.base/jit.exp: one_jit_test-2: info function ^jit_function
new FAIL: gdb.base/longjmp.exp: next over call_longjmp (2)
new FAIL: gdb.base/longjmp.exp: next over longjmp(1)
new FAIL: gdb.base/multi-forks.exp: Detach 2
new FAIL: gdb.base/multi-forks.exp: Detach 3
new FAIL: gdb.base/multi-forks.exp: Detach 4
new FAIL: gdb.base/multi-forks.exp: Detach 5
new FAIL: gdb.base/multi-forks.exp: Did kill 10
new FAIL: gdb.base/multi-forks.exp: Did kill 11
new FAIL: gdb.base/multi-forks.exp: Did kill 12
new FAIL: gdb.base/multi-forks.exp: Did kill 13
new FAIL: gdb.base/multi-forks.exp: Did kill 14
new FAIL: gdb.base/multi-forks.exp: Did kill 15
new FAIL: gdb.base/multi-forks.exp: Did kill 16
new FAIL: gdb.base/multi-forks.exp: Did kill 6
new FAIL: gdb.base/multi-forks.exp: Did kill 7
new FAIL: gdb.base/multi-forks.exp: Did kill 8
new FAIL: gdb.base/multi-forks.exp: Did kill 9
new FAIL: gdb.base/multi-forks.exp: Kill 10
new FAIL: gdb.base/multi-forks.exp: Kill 11
new FAIL: gdb.base/multi-forks.exp: Kill 12
new FAIL: gdb.base/multi-forks.exp: Kill 13
new FAIL: gdb.base/multi-forks.exp: Kill 14
new FAIL: gdb.base/multi-forks.exp: Kill 15
new FAIL: gdb.base/multi-forks.exp: Kill 16
new FAIL: gdb.base/multi-forks.exp: Kill 6
new FAIL: gdb.base/multi-forks.exp: Kill 7
new FAIL: gdb.base/multi-forks.exp: Kill 8
new FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: follow child, print pids
new FAIL: gdb.base/multi-forks.exp: inferior 1
new FAIL: gdb.base/multi-forks.exp: inferior 10
new FAIL: gdb.base/multi-forks.exp: inferior 11
new FAIL: gdb.base/multi-forks.exp: inferior 12
new FAIL: gdb.base/multi-forks.exp: inferior 13
new FAIL: gdb.base/multi-forks.exp: inferior 14
new FAIL: gdb.base/multi-forks.exp: inferior 15
new FAIL: gdb.base/multi-forks.exp: inferior 2
new FAIL: gdb.base/multi-forks.exp: inferior 3
new FAIL: gdb.base/multi-forks.exp: inferior 4
new FAIL: gdb.base/multi-forks.exp: inferior 5
new FAIL: gdb.base/multi-forks.exp: inferior 6
new FAIL: gdb.base/multi-forks.exp: inferior 7
new FAIL: gdb.base/multi-forks.exp: inferior 8
new FAIL: gdb.base/multi-forks.exp: inferior 9
new FAIL: gdb.base/multi-forks.exp: info inferior 1
new FAIL: gdb.base/multi-forks.exp: info inferior 10
new FAIL: gdb.base/multi-forks.exp: info inferior 11
new FAIL: gdb.base/multi-forks.exp: info inferior 12
new FAIL: gdb.base/multi-forks.exp: info inferior 13
new FAIL: gdb.base/multi-forks.exp: info inferior 14
new FAIL: gdb.base/multi-forks.exp: info inferior 15
new FAIL: gdb.base/multi-forks.exp: info inferior 16
new FAIL: gdb.base/multi-forks.exp: info inferior 2
new FAIL: gdb.base/multi-forks.exp: info inferior 3
new FAIL: gdb.base/multi-forks.exp: info inferior 4
new FAIL: gdb.base/multi-forks.exp: info inferior 5
new FAIL: gdb.base/multi-forks.exp: info inferior 6
new FAIL: gdb.base/multi-forks.exp: info inferior 7
new FAIL: gdb.base/multi-forks.exp: info inferior 8
new FAIL: gdb.base/multi-forks.exp: info inferior 9
new FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
new FAIL: gdb.base/pc-fp.exp: info register pc fp
new FAIL: gdb.base/pie-execl.exp: continue
new FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
new FAIL: gdb.base/pr11022.exp: breakpoint hit
new FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
new FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
new FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
new FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
new FAIL: gdb.base/solib-nodir.exp: library loaded
new FAIL: gdb.base/solib-search.exp: backtrace (with wrong libs)
new FAIL: gdb.base/sym-file.exp: breakpoint at bar is pending
new FAIL: gdb.base/sym-file.exp: breakpoint at foo is pending
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: bar (the program exited)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: foo (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: gdb_remove_symbol_file (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: continue to breakpoint: reload (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: info files must not display sym-file-lib
new FAIL: gdb.base/sym-file.exp: stale bkpts: add-symbol-file sym-file-lib.so addr
new FAIL: gdb.base/sym-file.exp: stale bkpts: breakpoint at baz is pending
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: end here (the program is no longer running)
new FAIL: gdb.base/sym-file.exp: stale bkpts: continue to breakpoint: gdb_add_symbol_file (the program is no longer running)
new FAIL: gdb.base/term.exp: info terminal at breakpoint
new FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
new FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
new FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
new FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
new FAIL: gdb.base/until-nodebug.exp: until 1
new FAIL: gdb.base/until-nodebug.exp: until 2
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.base/value-double-free.exp: continue
new FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
new FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
new FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
new FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
new FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
new FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
new FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
new FAIL: gdb.base/watch-read.exp: write watchpoint triggers
new FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
new FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
new FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoint.exp: back at main from marker1
new FAIL: gdb.base/watchpoint.exp: cont
new FAIL: gdb.base/watchpoint.exp: cont <<2>>
new FAIL: gdb.base/watchpoint.exp: cont <<3>>
new FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
new FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
new FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
new FAIL: gdb.base/watchpoint.exp: continue with watch -location
new FAIL: gdb.base/watchpoint.exp: continue with watch foo2
new FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
new FAIL: gdb.base/watchpoint.exp: global_ptr next
new FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
new FAIL: gdb.base/watchpoint.exp: next after watch x
new FAIL: gdb.base/watchpoint.exp: next over buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
new FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
new FAIL: gdb.base/watchpoint.exp: next over ptr init
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization
new FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
new FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
new FAIL: gdb.base/watchpoint.exp: self-delete local watch
new FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
new FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
new FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
new FAIL: gdb.base/watchpoint.exp: trigger local watch
new FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
new FAIL: gdb.base/watchpoint.exp: trigger static local watch
new FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
new FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
new FAIL: gdb.base/watchpoint.exp: until out of loop
new FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
new FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
new FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
new FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
new FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, first time <<2>>
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, fourth time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
new FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: annotate-quit
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
new FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota2.exp: watch triggered on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
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/inherit.exp: print g_vD
new FAIL: gdb.cp/inherit.exp: print g_vE
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(ccp) == &typeid(typeof(ccp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(cp) == &typeid(typeof(cp))
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i)
new FAIL: gdb.cp/typeid.exp: before starting: print &typeid(i) == &typeid(typeof(i))
new FAIL: gdb.cp/virtbase.exp: print *(D *) e
new FAIL: gdb.cp/virtbase.exp: print *this
new FAIL: gdb.dwarf2/dw2-case-insensitive.exp: p fuNC_symtab
new FAIL: gdb.dwarf2/implptrpiece.exp: print/d p[-1]
new FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
new FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a function only for a selected ASM file.
new FAIL: gdb.linespec/break-asm-file.exp: set a break-point at a global function only for a selected ASM file.
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
new FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-var-child.exp: listing of children, simple types: names, type and values, complex types: names and types
new FAIL: gdb.mi/mi-var-display.exp: set format variable weird.func_ptr_ptr in natural
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
new FAIL: gdb.modula2/unbounded-array.exp: print unbounded array contents
new FAIL: gdb.multi/bkpt-multi-exec.exp: continue
new FAIL: gdb.multi/bkpt-multi-exec.exp: run
new FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
new FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
new FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
new FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
new FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
new FAIL: gdb.python/py-evthreads.exp: continue thread 1
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
new FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
new FAIL: gdb.python/py-evthreads.exp: thread 2
new FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.python/py-framefilter.exp: bt for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt full for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no filters for no debuginfo
new FAIL: gdb.python/py-framefilter.exp: bt no-filters full no debuginfo
new FAIL: gdb.python/py-objfile.exp: print main without debug info
new FAIL: gdb.python/py-value-cc.exp: u's second field via field
new FAIL: gdb.python/python.exp: Test find_pc_line with resume address
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
new FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
new FAIL: gdb.stabs/gdb11479.exp: Can't run to main forced_stabs
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
new FAIL: gdb.threads/fork-child-threads.exp: next over fork
new FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
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, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
new FAIL: gdb.threads/linux-dp.exp: info threads after: 0
new FAIL: gdb.threads/linux-dp.exp: info threads after: 1
new FAIL: gdb.threads/linux-dp.exp: info threads after: 2
new FAIL: gdb.threads/linux-dp.exp: info threads after: 3
new FAIL: gdb.threads/linux-dp.exp: info threads after: 4
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
new FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: step: step
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: next: next
new FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: step: step
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint 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: finish
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoint after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
new FAIL: gdb.trace/entry-values.exp: Find the call or branch instruction offset in bar
new FAIL: gdb.trace/entry-values.exp: disassemble bar
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-20 19:31 Test results for commit c9ae55c9597064a8fe9a20899a17a394ac4ee3f8 on " sergiodj
@ 2015-02-20 20:45 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-20 20:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	c9ae55c9597064a8fe9a20899a17a394ac4ee3f8

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-20  5:01 Test results for commit 7b582627bc42922de3b75792472f5223f1910277 on " sergiodj
@ 2015-02-20  6:45 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-20  6:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	7b582627bc42922de3b75792472f5223f1910277

Author(s) (in the same order as the commits):
	David Taylor <dtaylor@emc.com>

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

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-20  4:06 Test results for commit 3b7a39661610038aad32563069b10fb2cfc55fab on " sergiodj
@ 2015-02-20  5:54 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-20  5:54 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	3b7a39661610038aad32563069b10fb2cfc55fab

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-19 15:26 Test results for commit 3b41352824ddc32dabca2d3281a03b4a0b8c7a27 on " sergiodj
@ 2015-02-19 17:09 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-19 17:09 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	3b41352824ddc32dabca2d3281a03b4a0b8c7a27

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (got interactive prompt)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-19 14:13 Test results for commit 77ef543e9e7861214232c63c960eddf19674cf61 on " sergiodj
@ 2015-02-19 15:42 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-19 15:42 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	77ef543e9e7861214232c63c960eddf19674cf61

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
new FAIL: gdb.gdb/selftest.exp: printed version
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: printed version
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (got interactive prompt)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-19 13:35 Test results for commit 90ca3b45da1c08eff31605b2af7cec9979a95bde on " sergiodj
@ 2015-02-19 14:32 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-19 14:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	90ca3b45da1c08eff31605b2af7cec9979a95bde

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 13:49 Test results for commit d4a0a1ff2b7f3d50180229768a270750ef94bbdf on " sergiodj
@ 2015-02-17 15:16 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 15:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	d4a0a1ff2b7f3d50180229768a270750ef94bbdf

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

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

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-17 12:43 Test results for commit 140e2c62fd7a46b4500dbd442964543587c0337b on " sergiodj
@ 2015-02-17 14:26 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-17 14:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	140e2c62fd7a46b4500dbd442964543587c0337b

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

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

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: finish to main
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (the program is no longer running)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: set reverse execution
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-11 15:42 Test results for commit 5dea9fe2285fee5d53691856750a0c8960fca04d on " sergiodj
@ 2015-02-12  4:18 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-12  4:18 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	5dea9fe2285fee5d53691856750a0c8960fca04d

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
new FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel
new FAIL: gdb.base/valgrind-db-attach.exp: bt
new FAIL: gdb.base/valgrind-infcall.exp: continue #1 (valgrind vgdb has terminated)
new FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
new FAIL: gdb.base/valgrind-infcall.exp: target remote for vgdb (got interactive prompt)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugIN: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: BINprelinkYESdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as PRESENT
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkYESdebugNO: symbol-less: seen displacement message as PRESENT
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-1/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/valgrind-infcall.exp: monitor v.set gdb_output
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-11 15:19 Test results for commit 46d020960241fcafd7d0ab483746a206829620ea on " sergiodj
@ 2015-02-12  2:59 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-12  2:59 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	46d020960241fcafd7d0ab483746a206829620ea

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

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

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (got interactive prompt)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2
new FAIL: gdb.reverse/until-precsave.exp: reverse-until to entry of factorial (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: set reverse execution (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-11 14:32 Test results for commit a9189a245363137825ce02a23202df45b04db179 on " sergiodj
@ 2015-02-12  0:52 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-12  0:52 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	a9189a245363137825ce02a23202df45b04db179

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
new FAIL: gdb.base/func-ptrs.exp: stop in sentinel (timeout)
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: reverse-advance to final return of factorial
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
  2015-02-11 14:04 Test results for commit 25a0672ba8b7f4badc682eaf08a1e342b496b483 on " sergiodj
@ 2015-02-11 21:44 ` sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-11 21:44 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-2

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

Commit(s) tested:
	25a0672ba8b7f4badc682eaf08a1e342b496b483

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

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
new FAIL: gdb.base/async-shell.exp: process stopped (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: single-step to handler (GDB internal error)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: single-step to handler (GDB internal error)
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: continue to breakpoint: test_signal_no_handler (the program exited)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: single-step past permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with no handler: stop at permanent breakpoint (the program is no longer running)
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: entry point reached (the program is no longer running)
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
new FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: entry point reached (the program is no longer running)
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry/return: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: restarting inferior: entry: program has called chroot (the program exited)
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with args noxml: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: with many arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: program has called 61 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: chroot: syscall 61 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: program has called 6 (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: close: syscall 6 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: program has called 42 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: pipe: syscall 42 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: program has called 234 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: program has called 3 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: read: syscall 3 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: program has called 4 (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without args noxml: write: syscall 4 has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: continue until exit (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called chroot (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called close (the program exited)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called exit_group (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called pipe (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called read (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: program has called write (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall chroot has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall close has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall pipe has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall read has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: without arguments: syscall write has returned (the program is no longer running)
new FAIL: gdb.base/catch-syscall.exp: wrong args: continue until exit at catch syscall with unused syscall (mlock) (the program exited)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork five (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork four (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork three (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: Exit, dropped into next fork two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 10 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 7 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 8 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break2 9 one (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
new FAIL: gdb.base/checkpoint.exp: break3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: break4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 1 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 2 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 3 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 4 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 5 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 6 one (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: breakpoint 1 7 one (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
new FAIL: gdb.base/checkpoint.exp: step in 1 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 10 one (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
new FAIL: gdb.base/checkpoint.exp: step in 2 two (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
new FAIL: gdb.base/checkpoint.exp: step in 3 two (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
new FAIL: gdb.base/checkpoint.exp: step in 4 two (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
new FAIL: gdb.base/checkpoint.exp: step in 5 two (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
new FAIL: gdb.base/checkpoint.exp: step in 6 two (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
new FAIL: gdb.base/checkpoint.exp: step in 7 two (the program is no longer running)
new FAIL: gdb.base/checkpoint.exp: step in 8 one (the program exited)
new FAIL: gdb.base/checkpoint.exp: step in 9 one (the program is no longer running)
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
new FAIL: gdb.base/corefile.exp: attach: core file is cleared
new FAIL: gdb.base/corefile.exp: attach: with core
new FAIL: gdb.base/corefile.exp: run: core file is cleared
new FAIL: gdb.base/corefile.exp: run: with core
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
new FAIL: gdb.base/dprintf-non-stop.exp: Can't run to main
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
new FAIL: gdb.base/multi-forks.exp: Run to exit 10 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 11 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 12 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 13 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 14 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 15 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 16 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 2 (the program exited)
new FAIL: gdb.base/multi-forks.exp: Run to exit 3 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 4 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 5 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 6 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 7 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 8 (the program is no longer running)
new FAIL: gdb.base/multi-forks.exp: Run to exit 9 (the program is no longer running)
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout)
new FAIL: gdb.base/multi-forks.exp: run to exit 2 (timeout) <<2>>
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to marker2
new FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_complex_watchpoint (the program exited)
PASS -> FAIL: gdb.base/watchpoint.exp: continue until exit at continue to exit in test_simple_watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
new FAIL: gdb.cp/annota2.exp: break at main (got interactive prompt)
new FAIL: gdb.cp/annota2.exp: continue until exit (timeout)
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
new FAIL: gdb.cp/annota2.exp: set watch on a.x (timeout)
new FAIL: gdb.cp/annota3.exp: annotate-quit (pattern 2)
new FAIL: gdb.cp/annota3.exp: continue to exit (pattern 4)
new FAIL: gdb.cp/annota3.exp: watch triggered on a.x (timeout)
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
new FAIL: gdb.mi/mi-dprintf.exp: mi set dprintf style to an unrecognized type (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (MI error) <<2>>
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout)
new FAIL: gdb.mi/mi-watch.exp: hw: watchpoint trigger (timeout) <<2>>
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory &x x 4 "01": watchpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": breakpoint hit 2 (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit (timeout)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (MI error)
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (timeout)
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
new FAIL: gdb.python/py-evsignal.exp: Signal Thread 3
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.python/py-evthreads.exp: thread 3 was signaled (timeout)
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
new FAIL: gdb.server/server-exec-info.exp: set sysroot remote: (got interactive prompt)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: attach (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 1: break at break_fn: 1 (timeout)
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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (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: break break_fn (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: no new threads (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: set breakpoint always-inserted on (timeout)
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
new FAIL: gdb.threads/fork-child-threads.exp: get to the spawned thread (the program exited)
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
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, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 1, get to the spawned thread in fork child (the program is no longer running)
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
new FAIL: gdb.threads/fork-thread-pending.exp: 1, refused to resume (the program is no longer running)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, followed to the child, found two threads (unknown output)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the fork event (the program exited)
new FAIL: gdb.threads/fork-thread-pending.exp: 2, get to the spawned thread in fork child (the program is no longer running)
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-1.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-2.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-3.exp: lock-sched1: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched0: continue over exec (timeout)
new FAIL: gdb.threads/non-ldr-exc-4.exp: lock-sched1: continue over exec (timeout)
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
new FAIL: gdb.threads/thread-execl.exp: schedlock off: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock on: get to main in new image (timeout)
new FAIL: gdb.threads/thread-execl.exp: schedlock step: get to main in new image (timeout)
new FAIL: gdb.threads/thread_events.exp: continue to after_join_func with messages enabled (saw 0, expected 1)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the first fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) 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: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
new FAIL: gdb.threads/watchthreads2.exp: x watch loop
new FAIL: gdb.threads/wp-replication.exp: No hardware watchpoints available
============================


*** Regressions against the baseline ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.ada/watch_arg.exp: Continuing to second breakpoint
new FAIL: gdb.base/annota3.exp: signal sent (pattern 4) (timeout)
PASS -> FAIL: gdb.base/async-shell.exp: interrupt
PASS -> FAIL: gdb.base/async-shell.exp: run &
PASS -> FAIL: gdb.base/attach-pie-noexec.exp: attach
PASS -> FAIL: gdb.base/attach.exp: attach when process' a.out not in cwd
PASS -> FAIL: gdb.base/attach.exp: attach2, with no file
new FAIL: gdb.base/auxv.exp: continue (timeout)
new FAIL: gdb.base/auxv.exp: info auxv on gcore-created dump (timeout)
new FAIL: gdb.base/auxv.exp: load core file for info auxv on gcore-created dump (timeout)
PASS -> FAIL: gdb.base/auxv.exp: matching auxv data from live and gcore
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=off, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=0: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: mainline pc points at permanent breakpoint
PASS -> FAIL: gdb.base/bp-permanent.exp: always_inserted=on, sw_watchpoint=1: stepi signal with handler: up to mainline code
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugIN: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieNO: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): reach
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: BINprelinkNOdebugNOpieYES: symbol-less: reach-(_dl_debug_state|dl_main): seen displacement message as NONZERO
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: ld.so exit
PASS -> FAIL: gdb.base/break-interp.exp: LDprelinkNOdebugNO: symbol-less: seen displacement message as NONZERO
new FAIL: gdb.base/catch-syscall.exp: set tdesc filename /home/gdb-buildbot/fedora-21-ppc64be-2/fedora-ppc64be-native-extended-gdbserver/build/gdb/testsuite/outputs/gdb.base/catch-syscall/trivial.xml (got interactive prompt)
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output one
PASS -> FAIL: gdb.base/checkpoint.exp: Diff input and output two
PASS -> FAIL: gdb.base/checkpoint.exp: break2 with many checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints one
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints two
PASS -> FAIL: gdb.base/checkpoint.exp: info checkpoints with at least 600 checkpoints
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 1
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 10
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 2
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 3
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 4
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 5
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 6
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 7
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 8
PASS -> FAIL: gdb.base/checkpoint.exp: outfile still open 9
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 0 one <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 10 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 6 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 8 three
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: restart 9 three
PASS -> FAIL: gdb.base/checkpoint.exp: step in 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: step in 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 1 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify i 9 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 1 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 10 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 2 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 3 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 4 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 5 two <<2>>
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 6 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 7 two
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 8 one
PASS -> FAIL: gdb.base/checkpoint.exp: verify lines 9 one
PASS -> FAIL: gdb.base/commands.exp: continue with watch
PASS -> FAIL: gdb.base/display.exp: first disp
PASS -> FAIL: gdb.base/display.exp: next hit
PASS -> FAIL: gdb.base/display.exp: second disp
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted off: continue across exec
PASS -> FAIL: gdb.base/execl-update-breakpoints.exp: always-inserted on: continue across exec
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_0, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_1, global_var_2, 0xff
PASS -> FAIL: gdb.base/find-unmapped.exp: find global_var_2, (global_var_2 + 16), 0xff
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at continue
PASS -> FAIL: gdb.base/gdb11531.exp: watchpoint variable triggers at next
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 2
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 3
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 4
PASS -> FAIL: gdb.base/multi-forks.exp: Detach 5
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Did kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 10
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 11
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 12
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 13
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 14
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 15
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 16
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 6
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 7
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 8
PASS -> FAIL: gdb.base/multi-forks.exp: Kill 9
PASS -> FAIL: gdb.base/multi-forks.exp: follow child, print pids
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 1
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 10
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 11
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 12
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 13
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 14
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 15
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 16
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 2
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 3
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 4
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 5
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 6
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 7
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 8
PASS -> FAIL: gdb.base/multi-forks.exp: info inferior 9
PASS -> FAIL: gdb.base/multi-forks.exp: restart final
PASS -> FAIL: gdb.base/pie-execl.exp: continue
PASS -> FAIL: gdb.base/pie-execl.exp: pie_execl_marker address has changed
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit
PASS -> FAIL: gdb.base/pr11022.exp: breakpoint hit 2
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 first instance watchpoint, second time
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 1)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 2)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 3)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 4)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 5)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 6)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 7)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 8)
PASS -> FAIL: gdb.base/recurse.exp: continue to recurse (a = 9)
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: first instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/recurse.exp: next over b = 0 in second instance
PASS -> FAIL: gdb.base/recurse.exp: second instance watchpoint deleted when leaving scope
PASS -> FAIL: gdb.base/solib-nodir.exp: library loaded
PASS -> FAIL: gdb.base/term.exp: info terminal at breakpoint
PASS -> FAIL: gdb.base/testenv.exp: Test no TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL
PASS -> FAIL: gdb.base/testenv.exp: Test with TEST_GDB_GLOBAL unset
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var
PASS -> FAIL: gdb.base/testenv.exp: Test with one TEST_GDB var, after unset
PASS -> FAIL: gdb.base/testenv.exp: Test with two TEST_GDB var
PASS -> FAIL: gdb.base/value-double-free.exp: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: -location watch against bitfields: continue until exit
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.a: 0->1: print expression after
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.a: 1->0: 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.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: q.e: 5->4: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: continue until exit
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 0->4: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 1->0: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 10->3: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 2->1: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 3->2: print expression before
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: continue
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression after
PASS -> FAIL: gdb.base/watch-bitfields.exp: regular watch against bitfields: q.d + q.f + q.g: 4->10: print expression before
PASS -> FAIL: gdb.base/watch-cond-infcall.exp: hw: continue
PASS -> FAIL: gdb.base/watch-cond.exp: condition of watchpoint 2 changes
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint on global2 variable triggers
PASS -> FAIL: gdb.base/watch-cond.exp: watchpoint stops with untestable local expression
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-read.exp: only read watchpoint triggers when value doesn't change
PASS -> FAIL: gdb.base/watch-read.exp: only write watchpoint triggers when value changes
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: read watchpoint triggers when value doesn't change, trapping reads and writes
PASS -> FAIL: gdb.base/watch-read.exp: write watchpoint triggers
PASS -> FAIL: gdb.base/watch-vfork.exp: Watchpoint triggers after vfork (hw)
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 1
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 2
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 3
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 4
PASS -> FAIL: gdb.base/watch_thread_num.exp: Watchpoint triggered iteration 5
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/watchpoint-hw.exp: start
PASS -> FAIL: gdb.base/watchpoint-solib.exp: continue to foo again
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.exp: Test complex watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoint.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoint.exp: back at main from marker1
PASS -> FAIL: gdb.base/watchpoint.exp: cont
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: cont <<3>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue after trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint at func1
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: continue to breakpoint: func2 breakpoint here <<3>>
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: continue with watch -location
PASS -> FAIL: gdb.base/watchpoint.exp: continue with watch foo2
PASS -> FAIL: gdb.base/watchpoint.exp: did not trigger wrong watchpoint
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: global_ptr_ptr next
PASS -> FAIL: gdb.base/watchpoint.exp: next after watch x
PASS -> FAIL: gdb.base/watchpoint.exp: next over buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr buffer set
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next over global_ptr_ptr pointer advance
PASS -> FAIL: gdb.base/watchpoint.exp: next over ptr init
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization
PASS -> FAIL: gdb.base/watchpoint.exp: next past local_x initialization <<2>>
PASS -> FAIL: gdb.base/watchpoint.exp: next to `for' in watchpoint.exp
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete local watch with explicit scope in recursive call (2)
PASS -> FAIL: gdb.base/watchpoint.exp: self-delete partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: set 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: step to ival2 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger local watch with explicit scope in recursive call
PASS -> FAIL: gdb.base/watchpoint.exp: trigger static local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger1 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: trigger2 partially local watch
PASS -> FAIL: gdb.base/watchpoint.exp: until out of loop
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival1 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: until to ival3 assignment
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint disabled in table
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 hit, fifth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, first time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, fourth time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoint.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 1
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 4
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint hit count is 5
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 2
PASS -> FAIL: gdb.base/watchpoints.exp: Watchpoint ival1 hit count is 3
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, fifth time
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, fourth time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint hit, third time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, second time
PASS -> FAIL: gdb.base/watchpoints.exp: watchpoint ival1 hit, third time
PASS -> FAIL: gdb.cp/annota2.exp: delete bps
PASS -> FAIL: gdb.gdb/python-interrupts.exp: signal SIGINT
PASS -> FAIL: gdb.gdb/python-selftest.exp: call catch_command_errors(execute_command, "python print(5)", 0, RETURN_MASK_ALL)
new FAIL: gdb.gdb/selftest.exp: backtrace through signal handler (timeout)
new FAIL: gdb.gdb/selftest.exp: send SIGINT signal to child process (timeout)
new FAIL: gdb.gdb/selftest.exp: send ^C to child process (timeout)
PASS -> FAIL: gdb.mi/mi-pending.exp: MI pending breakpoint on mi-pendshr.c:pendfunc2 if x==4
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: continue
PASS -> FAIL: gdb.multi/bkpt-multi-exec.exp: run
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: awatch c on inferior 2
PASS -> FAIL: gdb.multi/watchpoint-multi.exp: catch marker_exit in inferior 1
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_eval_funcs: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_bkpt_internal: Test watchpoint write
PASS -> FAIL: gdb.python/py-breakpoint.exp: test_watchpoints: Test watchpoint write
PASS -> FAIL: gdb.python/py-events.exp: get current thread
PASS -> FAIL: gdb.python/py-evthreads.exp: Run to breakpoint 1
PASS -> FAIL: gdb.python/py-evthreads.exp: continue thread 1
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 2
PASS -> FAIL: gdb.python/py-evthreads.exp: reached breakpoint 3
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 2
PASS -> FAIL: gdb.python/py-evthreads.exp: thread 3
new FAIL: gdb.reverse/until-precsave.exp: Kill process, prepare to debug log file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: advance to factorial (timeout)
PASS -> FAIL: gdb.reverse/until-precsave.exp: advance to marker2
new FAIL: gdb.reverse/until-precsave.exp: finish to main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reload core file (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-advance to marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: reverse-finish from marker2 (timeout)
new FAIL: gdb.reverse/until-precsave.exp: run to end of main (timeout)
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until factorial, recursive function (timeout)
new FAIL: gdb.reverse/until-precsave.exp: until func, not called by current frame (got interactive prompt)
new FAIL: gdb.reverse/until-precsave.exp: until line number (timeout)
PASS -> FAIL: gdb.server/server-exec-info.exp: info files
PASS -> FAIL: gdb.threads/execl.exp: continue across exec
PASS -> FAIL: gdb.threads/fork-child-threads.exp: next over fork
PASS -> FAIL: gdb.threads/fork-child-threads.exp: two threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 1, multiple threads found
PASS -> FAIL: gdb.threads/fork-thread-pending.exp: 2, multiple threads found
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 0
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 1
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 2
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 3
PASS -> FAIL: gdb.threads/linux-dp.exp: info threads after: 4
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits
PASS -> FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: no thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/step-over-trips-on-watchpoint.exp: with thread-specific bp: continue: continue
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: hardware breakpoints 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
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: singlethread watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: hardware breakpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoints work
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: hardware breakpoints 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: singlethread watchpoints work
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 A after the second 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 B after the second fork
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: finish
PASS -> FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: hardware breakpoints 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: watchpoints work
============================


*** Failures that are being ignored ***
============================
FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-02-05  1:46 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-05  1:46 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-21-ppc64be-1

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

Commit(s) tested:
	2b7d5144a58e63cb9517f6a8b31dd7c5e05a7ffe

Author(s) (in the same order as the commits):
	Doug Evans <dje@google.com>

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

*** Regressions found ***
============================
PASS -> FAIL: gdb.ada/str_uninit.exp: print my_str
PASS -> FAIL: gdb.base/break-idempotent.exp: always-inserted off: awatch: twice: awatch global
PASS -> FAIL: gdb.base/break-idempotent.exp: always-inserted off: rwatch: twice: rwatch global
new FAIL: gdb.base/break-idempotent.exp: always-inserted on: awatch: twice: awatch global
new FAIL: gdb.base/break-idempotent.exp: always-inserted on: rwatch: twice: rwatch global
new FAIL: gdb.mi/mi-watch-nonstop.exp: delete watchpoint
new FAIL: gdb.mi/pr11022.exp: data-write-memory-bytes &x "01": watchpoint hit 2 (unknown output after running)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: breakpoint (A) after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: multithreaded: watchpoint A after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: breakpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: child: singlethreaded: watchpoint after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: multithreaded: breakpoint (A) after the second fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the first fork (GDB internal error)
new FAIL: gdb.threads/watchpoint-fork.exp: parent: singlethreaded: breakpoint after the second fork (GDB internal error)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-02-04  0:26 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-02-04  0:26 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	b9f28929592990231bdce7b44369afc184a55f5d

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-31 21:16 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-31 21:16 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	d0e6fdd38a2c11e9b95f38075eef3f5cf82877d7

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

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-31  5:12 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-31  5:12 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	28f848f5a13b391444e83d5ca49efd9fa7c7a886

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-31  1:00 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-31  1:00 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	ac15fb1fc366deea98c768657a6f4a3827600b96

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-29  7:32 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-29  7:32 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	dd25c4e757b07110efce8680ad530a4388f9d660

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Regressions found ***
============================
new FAIL: gdb.reverse/until-precsave.exp: save process recfile (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-28  7:11 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-28  7:11 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	4114b8ac550a3810f40454f788ff49d99f7f002d

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-27 13:45 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-27 13:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	bc1641296be8b5c9fee6a99e14f00dc7da7db60e

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-27  0:07 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-27  0:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	6446dae3969acfffd8bbd779980227439d9c4cbb
	4e1e1ad808e8620d34a0e6da5dba87d5dfb01f59
	1ab1f5f9160f1fce8129820b1c95aa7bb64cc90d
	6c3e7fa837c0885fbf1f5a9203c3cb720d55ab76
	936fc1158df657607b318e05e41a25e600ec3e33

Author(s) (in the same order as the commits):
	Wei-cheng Wang <cole945@gmail.com>
	Wei-cheng Wang <cole945@gmail.com>
	Wei-cheng Wang <cole945@gmail.com>
	Wei-cheng Wang <cole945@gmail.com>
	Wei-cheng Wang <cole945@gmail.com>

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

*** Regressions found ***
============================
new FAIL: gdb.base/random-signal.exp: stop with control-c (timeout)
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-26  0:45 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-26  0:45 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	81d293741a30b144317d97930c7633beeae758fe

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Failed to update GDB git repository.  This is probably a timeout problem with sourceware. ***




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-25  8:07 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-25  8:07 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	c8f66196de03935d0d0dca7a5e16054262a38561

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

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

*** Failed to update GDB git repository.  This is probably a timeout problem with sourceware. ***




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

* Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch
@ 2015-01-25  8:02 sergiodj
  0 siblings, 0 replies; 47+ messages in thread
From: sergiodj @ 2015-01-25  8:02 UTC (permalink / raw)
  To: gdb-testers

Buildslave:
	fedora-20-ppc64be-1

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

Commit(s) tested:
	c7b32e90b271f3f849a51441047ea17ff3ac7b05

Author(s) (in the same order as the commits):
	GDB Administrator <gdbadmin@sourceware.org>

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

*** Regressions found ***
============================
new FAIL: gdb.threads/attach-many-short-lived-threads.exp: iter 2: attach (timeout)
============================




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

end of thread, other threads:[~2015-05-30 11:57 UTC | newest]

Thread overview: 47+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-17 15:08 Test results for commit 5991bec1d4dbd23b476dc90bc6d1ba70e044898e on branch gdb-7.9-branch sergiodj
2015-02-17 15:15 ` Failures on Fedora-ppc64be-cc-with-index, " sergiodj
2015-02-17 15:28 ` Failures on Fedora-x86_64-native-extended-gdbserver-m64, " sergiodj
2015-02-17 15:37 ` Failures on Fedora-ppc64be-native-gdbserver-m64, " sergiodj
2015-02-17 15:44 ` Failures on Fedora-x86_64-native-gdbserver-m32, " sergiodj
2015-02-17 16:07 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-17 17:48 ` Failures on Fedora-ppc64le-native-extended-gdbserver-m64, " sergiodj
2015-02-17 17:52 ` Failures on Fedora-ppc64le-cc-with-index, " sergiodj
2015-02-17 17:59 ` Failures on Fedora-ppc64le-native-gdbserver-m64, " sergiodj
2015-02-17 19:06 ` Failures on Fedora-ppc64le-m64, " sergiodj
2015-02-17 19:11 ` Failures on Debian-i686, " sergiodj
2015-02-17 19:25 ` Failures on Debian-x86_64-m64, " sergiodj
2015-02-17 19:41 ` Failures on Debian-i686-native-extended-gdbserver, " sergiodj
2015-02-17 20:14 ` Failures on Debian-x86_64-native-gdbserver-m64, " sergiodj
  -- strict thread matches above, loose matches on Subject: below --
2015-05-30 11:03 [binutils-gdb/gdb-7.9-branch] Unbreak DJGPP build of GDB sergiodj+buildbot
2015-05-30 11:58 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-05-29 17:52 [binutils-gdb/gdb-7.9-branch] PR gdb/18464: Do not crash on unrecognized GNU .note.ABI-tag values sergiodj+buildbot
2015-05-29 19:32 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-05-13 17:38 [binutils-gdb/gdb-7.9-branch] Set GDB version number to 7.9.1 sergiodj+buildbot
2015-05-13 19:20 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-05-02 22:52 [binutils-gdb/gdb-7.9-branch] Subject: [PATCH] Fix pascal behavior for class fields with testcase sergiodj+buildbot
2015-05-02 23:45 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-04-29  6:16 [binutils-gdb/gdb-7.9-branch] PR python/18299 sergiodj+buildbot
2015-04-29  7:30 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-03-31 15:30 [binutils-gdb/gdb-7.9-branch] Fix the triplet regexp to recognize triplets, not only quadruplets sergiodj+buildbot
2015-03-31 17:17 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-03-21 11:59 [binutils-gdb/gdb-7.9-branch] Fix undefined behavior in TUI's TAB expansion sergiodj+buildbot
2015-03-21 14:39 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-02-26 14:38 [binutils-gdb/gdb-7.9-branch] Change // comment in gdb/compile/ sergiodj+buildbot
2015-02-26 15:13 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-02-26 12:11 [binutils-gdb/gdb-7.9-branch] Remove // comment in gdb/iq2000-tdep.c sergiodj+buildbot
2015-02-26 13:41 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, branch gdb-7.9-branch sergiodj+buildbot
2015-02-20 19:31 Test results for commit c9ae55c9597064a8fe9a20899a17a394ac4ee3f8 on " sergiodj
2015-02-20 20:45 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-20  5:01 Test results for commit 7b582627bc42922de3b75792472f5223f1910277 on " sergiodj
2015-02-20  6:45 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-20  4:06 Test results for commit 3b7a39661610038aad32563069b10fb2cfc55fab on " sergiodj
2015-02-20  5:54 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-19 15:26 Test results for commit 3b41352824ddc32dabca2d3281a03b4a0b8c7a27 on " sergiodj
2015-02-19 17:09 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-19 14:13 Test results for commit 77ef543e9e7861214232c63c960eddf19674cf61 on " sergiodj
2015-02-19 15:42 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-19 13:35 Test results for commit 90ca3b45da1c08eff31605b2af7cec9979a95bde on " sergiodj
2015-02-19 14:32 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-17 13:49 Test results for commit d4a0a1ff2b7f3d50180229768a270750ef94bbdf on " sergiodj
2015-02-17 15:16 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-17 12:43 Test results for commit 140e2c62fd7a46b4500dbd442964543587c0337b on " sergiodj
2015-02-17 14:26 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-11 15:42 Test results for commit 5dea9fe2285fee5d53691856750a0c8960fca04d on " sergiodj
2015-02-12  4:18 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-11 15:19 Test results for commit 46d020960241fcafd7d0ab483746a206829620ea on " sergiodj
2015-02-12  2:59 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-11 14:32 Test results for commit a9189a245363137825ce02a23202df45b04db179 on " sergiodj
2015-02-12  0:52 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-11 14:04 Test results for commit 25a0672ba8b7f4badc682eaf08a1e342b496b483 on " sergiodj
2015-02-11 21:44 ` Failures on Fedora-ppc64be-native-extended-gdbserver-m64, " sergiodj
2015-02-05  1:46 sergiodj
2015-02-04  0:26 sergiodj
2015-01-31 21:16 sergiodj
2015-01-31  5:12 sergiodj
2015-01-31  1:00 sergiodj
2015-01-29  7:32 sergiodj
2015-01-28  7:11 sergiodj
2015-01-27 13:45 sergiodj
2015-01-27  0:07 sergiodj
2015-01-26  0:45 sergiodj
2015-01-25  8:07 sergiodj
2015-01-25  8:02 sergiodj

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).